/* signal.css — SKS v1 signal surface (structure first)
   Rule: no branding theatre. Only readability + decision clarity. */

:root{
  /* ===== SYSTEM BACKGROUND (graphite → steel) ===== */
  --bg-graphite: #18212c;
  --bg-steel: #2f3c4e;

  /* ===== CORE TEXT ===== */
  --text: #e6eaf2;         /* used on dark background only */
  --muted: #a9b2c3;
  --line: #263145;

  /* ===== BRUSHED ALUMINIUM (containers) ===== */
  --aluminium-base: #d7dbe0;
  --aluminium-soft: #c4c9d0;
  --aluminium-edge-light: rgba(255,255,255,.38);
  --aluminium-edge-dark: rgba(0,0,0,.28);

  /* Container text (because aluminium is light) */
  --ink: #0b0e14;
  --ink-muted: rgba(11,14,20,.70);
  --ink-faint: rgba(11,14,20,.55);

  /* ===== SEA — METALLIC GREEN (anodised) ===== */
  --sea-metal-base: #5e947b;
  --sea-metal-hi:   #7fc3a6;

  /* ===== SK — METALLIC BLUE (anodised) ===== */
  --sk-metal-base: #567fa6;
  --sk-metal-hi:   #7fb0db;

  /* ===== INTERACTION ===== */
  --accent: #7dd3fc; /* links on dark bg */
  --radius: 16px;
  --shadow: 0 12px 34px rgba(0,0,0,.40);
  --max: 1120px;

    /* ===== DIVISION GRADIENT TOKENS ===== */

  --sea-gradient:
    linear-gradient(180deg,
      #7FFFD4 0%,
      #6FE7C2 35%,
      #3EA881 100%);

  --sk-gradient:
    linear-gradient(180deg,
      #00F0FF 0%,
      #7CB9E8 45%,
      #3E6FAE 100%);

        /* ===== DISCOVERY — ORANGE GRADIENT ===== */
  --discovery-gradient:
    linear-gradient(180deg,
      #FFB347 0%,
      #FF8C42 45%,
      #D96400 100%);
}

/* ===== RESET ===== */
*{ box-sizing: border-box; }
html, body{ height: 100%; }

/* ===== PURE IMAGE BACKGROUND ===== */

body{
  margin:0;
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);

background:
  url("../images/sks_background.jpg");

  background-position:center 15%;
  background-size:108%;
  background-repeat:no-repeat;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.45) 100%
    );

  pointer-events: none;
  z-index: -1;
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: inherit;
  pointer-events: none;
  z-index: -2;
  filter: blur(0.8px);
  transform: scale(1.04);
}

/* ===== LINKS (default = for dark bg areas) ===== */
a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.discovery-link{
  text-align: center;
  margin-top: 12px;
}
.discovery-link a{
  font-weight: 700;
}

/* ===== LAYOUT ===== */
main{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 60px;
}

/* ===== BRUSHED ALUMINIUM CONTAINERS (header + sections) =====
   This is the big change: we stop painting with rgba() and wire to aluminium vars. */
header, section{
  color: var(--ink);

  background:
    /* soft top sheen */
    linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.10)),
    /* very subtle brushed grain */
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.05) 0px,
      rgba(255,255,255,.05) 2px,
      rgba(0,0,0,.025) 4px
    ),
    /* aluminium body */
    linear-gradient(180deg, rgba(215,219,224,.92), rgba(196,201,208,.92));

  border: 1px solid var(--aluminium-edge-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Links inside aluminium containers should be ink-safe, not neon */
header a, section a{ color: #0b3b6a; }
header a:hover, section a:hover{ text-decoration: underline; }

/* ===== HEADER ===== */
header{
  padding: 22px 22px 18px;
  margin-bottom: 18px;
}

header h1{
  margin: 0 0 4px;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  letter-spacing: 0.015em;  /* authority tracking */
  line-height: 1.05;
}

header h1 .title-core {
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.08em;
}

header p{
  margin: 0;
  text-align: center;
  color: var(--ink-muted);
}

/* ===== SKS HEADER LOGO ===== */
.sks-header-logo{
  position: absolute;
  top: 16px;
  left: 22px;

  width: 78px;
  height: 78px;

  border-radius: 10px;
  object-fit: cover;

  box-shadow:
    0 6px 14px rgba(0,0,0,.22),
    0 0 0 1px rgba(0,0,0,.18);
}

header{
  position: relative;
}

/* ===== DIVISION TITLE CONTAINER COLOUR (SEA / SK) ===== */
/* Targets the first header on each divisional page only */

body.sea-page main > header{
  background: var(--sea-gradient);
  border: 1px solid rgba(0,0,0,.35);
  color: #0b0e14;
}

body.sk-page main > header{
  background: var(--sk-gradient);
  border: 1px solid rgba(0,0,0,.35);
  color: #0b0e14;
}

body.discovery-page main > header{
  background: linear-gradient(180deg,
    #FFE680 0%,
    #FFD54F 45%,
    #E6B800 100%);
  border: 1px solid rgba(0,0,0,.35);
  color: #0b0e14;
}

/* ===== POLICY PAGE HEADER TREATMENT ===== */

body.policy-page main > header{
background: linear-gradient(180deg,
  #D05AA6 0%,
  #B13F86 45%,
  #7A235B 100%);

  border: 1px solid rgba(0,0,0,.35);
  color: #f4f4f4;
}

/* subtitle readability */
body.policy-page main > header p{
  color: rgba(255,255,255,.82);
}

/* keep subtitle readable on coloured headers */
main > header p{
  color: rgba(11,14,20,.70);
}


/* ===== SECTIONS ===== */
section{
  padding: 14px 16px;
  margin: 14px 0;
}

section p,
section ul,
section ol{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Centered section text only where intended */
body.discovery-page section p,
body.discovery-page section ul,
body.discovery-page section ol,
.enquiry-page p,
.enquiry-page ul,
.enquiry-page ol{
  text-align: center;
}

/* ===== SEA ENQUIRY FORM — COMFORT + CONTROL (v0.1) ===== */
:where(#sea-enquiry, .enquiry-page) form{
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Labels breathe */
:where(#sea-enquiry, .enquiry-page) label{
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
}

/* Make inputs feel “fillable” (bigger + softer) */
:where(#sea-enquiry, .enquiry-page) input,
:where(#sea-enquiry, .enquiry-page) select,
:where(#sea-enquiry, .enquiry-page) textarea{
  width: 100%;
  padding: 12px 12px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.55);
  outline: none;
}

/* Textareas: more room by default */
:where(#sea-enquiry, .enquiry-page) textarea{
  min-height: 120px;
  resize: vertical;
}

/* Focus: subtle but obvious */
:where(#sea-enquiry, .enquiry-page) input:focus,
:where(#sea-enquiry, .enquiry-page) select:focus,
:where(#sea-enquiry, .enquiry-page) textarea:focus{
  border-color: rgba(11,59,106,0.55);
  box-shadow: 0 0 0 3px rgba(11,59,106,0.12);
}

/* Button */
:where(#sea-enquiry, .enquiry-page) button{
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.30);
  font-weight: 700;
  cursor: pointer;
}

.btn-clear{
  opacity: .85;
}

.btn-clear:hover{
  opacity: 1;
}

/* ===== SEA ENQUIRY GRID LAYOUT (v0.1) ===== */
:where(#sea-enquiry, .enquiry-page) .form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

@media (max-width: 760px){
  :where(#sea-enquiry, .enquiry-page) .form-grid{
    grid-template-columns: 1fr;
  }
}

/* Full-width blocks */
:where(#sea-enquiry, .enquiry-page) .full-width{
  grid-column: 1 / -1;
  margin-bottom: 1.8rem;
}

/* --- Checkbox grid --- */
:where(#sea-enquiry, .enquiry-page) .check-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  margin-top: 8px;
}

@media (max-width: 760px){
  :where(#sea-enquiry, .enquiry-page) .check-grid{
    grid-template-columns: 1fr;
  }
}

/* Checkbox rows */
:where(#sea-enquiry, .enquiry-page) .check-grid label{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}

/* Neutralise global checkbox styling */
:where(#sea-enquiry, .enquiry-page) .check-grid input[type="checkbox"],
:where(#sea-enquiry, .enquiry-page) .confirm-line input[type="checkbox"]{
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: scale(1.15);
  flex: 0 0 auto;
}

/* ===== Intro alignment ===== */
:where(#sea-enquiry, .enquiry-page) .enquiry-intro{
  text-align: center !important;
  max-width: 820px;
  margin: 0 auto 1.6rem auto;
}

/* ===== Submit alignment ===== */
:where(#sea-enquiry, .enquiry-page) .submit-area{
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 2rem;
}

.intake-disclaimer{
  max-width: 760px;
  margin: 0 auto 6px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(11,14,20,.68);
}

/* Confirmation line */
:where(#sea-enquiry, .enquiry-page) .confirm-line{
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  text-align: center;
  max-width: 760px;
  margin: 0;
}

/* ===== DISCOVERY PAGE TYPOGRAPHY OVERRIDE ===== */
body.discovery-page #discovery p,
body.discovery-page #discovery ul,
body.discovery-page #discovery ol{
  text-align: left;
}

/* ===== SEA / SK PAGE TYPOGRAPHY OVERRIDE ===== */
body.sea-page section p:not(.discovery-link):not(.written-enquiry):not(.foh-alt-link),
body.sea-page section ul,
body.sea-page section ol,
body.sk-page section p:not(.discovery-link):not(.written-enquiry):not(.foh-alt-link),
body.sk-page section ul,
body.sk-page section ol{
  text-align: left;
}

body.sea-page p.foh-alt-link,
body.sk-page p.foh-alt-link{
  text-align: center;
}

section ul,
section ol{
  list-style-position: inside;
  padding-left: 0;
}

section h2{
  margin: 0 0 10px;
  font-size: 18px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ===== DIVISION PLATES ===== */
#division-buttons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

@media (max-width: 720px){
  #division-buttons{ grid-template-columns: 1fr; }
}

#division-buttons a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  gap: 6px;                 /* space between title + descriptor */
  padding: 22px 18px;       /* increase if you want taller buttons */
  min-height: 110px;        /* this is what gives you the extra height */

  border: 1px solid rgba(0,0,0,.30);
  color: #0b0e14;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 0;

/* Inset corner mask (subtle nameplate effect) */
/* Inset corner mask (centres anchored to true corners) */
-webkit-mask:
  radial-gradient(circle at 0 0, transparent 0 14px, black 14px) top left,
  radial-gradient(circle at 100% 0, transparent 0 14px, black 14px) top right,
  radial-gradient(circle at 0 100%, transparent 0 14px, black 14px) bottom left,
  radial-gradient(circle at 100% 100%, transparent 0 14px, black 14px) bottom right;
-webkit-mask-size: 51% 51%;
-webkit-mask-repeat: no-repeat;

  box-shadow:
  0 8px 18px rgba(0,0,0,.22),
  0 0 0 1px rgba(0,0,0,.22);

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
  will-change: transform;
}

#division-buttons .plate-title{
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-weight: 700;
  font-size: 30px;        /* match your header H1 size */
  letter-spacing: 0.03em; /* same authority tracking */
  line-height: 1.05;
}

#division-buttons .plate-sub{
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  opacity: 0.90;
}

/* inspection sheen */
#division-buttons a::before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 60%);
  transform: rotate(12deg);
  pointer-events:none;
}

/* hover = lift + slight forward presence */
#division-buttons a:hover{
  transform: translateY(-6px) scale(1.025);
  filter: brightness(1.04);

  box-shadow:
    0 18px 42px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.28);
}

#division-buttons a:active{
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.02);
}

/* ===== SEA / SK MATERIAL TREATMENTS ===== */
#division-buttons a.sea{
background: var(--sea-gradient);

  box-shadow:
    0 12px 28px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.30),
    0 0 22px rgba(127,255,212,.40);

  border: 1px solid rgba(0,0,0,.35);
}

#division-buttons a.sk{
background: var(--sk-gradient);

  box-shadow:
    0 12px 28px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.30),
    0 0 22px rgba(0,240,255,.35);

  border: 1px solid rgba(0,0,0,.35);
}

/* per-plate hover glow amplification */
/* per-plate hover glow amplification */

#division-buttons a.sea:hover{
  box-shadow:
    0 22px 55px rgba(0,0,0,.45),
    0 0 0 1px rgba(0,0,0,.35),
    0 0 34px rgba(127,255,212,.55),
    0 0 70px rgba(127,255,212,.25);
}

#division-buttons a.sk:hover{
  box-shadow:
    0 22px 55px rgba(0,0,0,.45),
    0 0 0 1px rgba(0,0,0,.35),
    0 0 34px rgba(0,240,255,.45),
    0 0 70px rgba(0,240,255,.18);
}

/* ===== FOH CTA PLATE ===== */
.foh-cta-plate{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  width: min(560px, 100%);
  margin-inline: auto;
  box-sizing: border-box;

  margin-top: 18px;
  padding: 24px 18px;
  min-height: 96px;

  color: #0b0e14;
  text-decoration: none;

  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  position: relative;
  overflow: hidden;
  border-radius: 0;

background: linear-gradient(
  135deg,
  #e8b07a 0%,
  #d9925b 52%,
  #c9784a 100%
);

  border: 1px solid rgba(0,0,0,.35);

  -webkit-mask:
    radial-gradient(circle at 0 0, transparent 0 14px, black 14px) top left,
    radial-gradient(circle at 100% 0, transparent 0 14px, black 14px) top right,
    radial-gradient(circle at 0 100%, transparent 0 14px, black 14px) bottom left,
    radial-gradient(circle at 100% 100%, transparent 0 14px, black 14px) bottom right;
  -webkit-mask-size: 51% 51%;
  -webkit-mask-repeat: no-repeat;

  box-shadow:
    0 12px 28px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.30),
    0 0 22px rgba(244,9,202,.32);

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
  will-change: transform;
}

.foh-cta-plate::before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 60%);
  transform: rotate(12deg);
  pointer-events:none;
}

.foh-cta-plate:hover{
  transform: translateY(-6px) scale(1.025);
  filter: brightness(1.04);

  box-shadow:
    0 22px 55px rgba(0,0,0,.45),
    0 0 0 1px rgba(0,0,0,.35),
    0 0 34px rgba(244,9,202,.48),
    0 0 70px rgba(178,11,234,.22);
}

.foh-cta-plate:active{
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.02);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  body::after{
    animation: none;
    transform: translate3d(0,0,0) scale(1.10);
  }
}

/* Legal links inside FOH */
.legal-links{
  margin-top: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;

  width: 100%;
  text-align: center;

  font-size: 14.5px;
}

.legal-links a{
  color: #1f2a37;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.legal-links a:hover{
  opacity: 1;
  transform: translateY(-1px);
}
/* ===== PANEL FOOTER (3-zone: left / true center / right spacer) ===== */
.panel-footer{
  margin-top: 18px;
  padding-top: 14px;

  /* grid beats flex here because "true center" is non-negotiable */
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
  column-gap: 18px;
}

/* Left zone (Back) */
.back-inpanel{
  justify-self: start;

  /* force single-line "← Back" behaviour */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;

  font-weight: 700;
  text-decoration: none;
  color: #1f2a37; /* matches legal link tone */
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-inpanel:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* Center zone (Privacy / Terms) */
.panel-footer .legal-links{
  justify-self: center;
  margin: 0;              /* kill any legacy spacing */
  text-align: center;
  white-space: nowrap;    /* keep Privacy / Terms on one line */
}

/* (Optional but usually helpful) make legal links sit nicely inline */
.panel-footer .legal-links a{
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 720px){

  .panel-footer{
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    gap: 12px;
  }

  .back-inpanel{
    justify-content: center;
  }

  .panel-footer .legal-links{
    display: flex;
    justify-content: center;
    gap: 22px;
  }
}

/* ===== SEA PAGE — BACKGROUND OVERRIDE ===== */
body.sea-page{
  background-image: url("../images/sks_background.jpg");
  background-position: center 15%;
  background-size: 108%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body.sea-page::after{
  background-image: url("../images/sks_background.jpg");
  background-position: center 15%;
  background-size: 108%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* SEA page veil tuning for brighter/mesh backgrounds */
body.sea-page::before{
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,0.56) 100%
    );
}

/* Floating back button */
.back-floating{
    position: fixed;
    top: 24px;
    left: 32px;
    z-index: 1000;

    font-size: 20px;
    font-weight: bold;
    text-decoration: none;

    color: #71a5c7;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.back-floating:hover{
    opacity: 1;
}

/* ===== SHARED KNOWLEDGE PAGE — BACKGROUND OVERRIDE ===== */

body.sk-page{
  background-image: url("../images/sks_background.jpg");
  background-position: center 15%;
  background-size: 108%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body.sk-page::after{
  background-image: url("../images/sks_background.jpg");
  background-position: center 15%;
  background-size: 108%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* SK page veil tuning (keeps contrast + calm) */
body.sk-page::before{
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,0.66) 100%
    );
}

/* ===== DISCOVERY PAGE — BACKGROUND OVERRIDE ===== */
body.discovery-page{
  background-image: url("../images/sks_background.jpg");
  background-position: center 15%;
  background-size: 108%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body.discovery-page::after{
  background-image: url("../images/sks_background.jpg");
  background-position: center 15%;
  background-size: 108%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ===== FOH SECTION EMPHASIS ===== */
.foh-terminal{
  box-shadow:
    0 20px 40px rgba(0,0,0,0.18),
    0 8px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
}

.foh-terminal h2{
  letter-spacing: 2px;
}

/* Title centering override (pixel reveal is applied to the H1) */
.page-title{
  text-align: center;
}

/* ===== TITLE FADE-IN (3s, clean) ===== */
.page-title{
  opacity: 0;
  animation: titleFadeIn 3s ease forwards;
}

@keyframes titleFadeIn{
  to{ opacity: 1; }
}

@keyframes bg-swirl{
  0%   { transform: scale(1.35) rotate(0deg); }
  100% { transform: scale(1.35) rotate(360deg); }
}

/* ===== FLOW STRIP (Divisional Diagram Insert) ===== */

.flow-strip{
  margin: 28px 0 40px;
  display: flex;
  justify-content: center;
}

.flow-inner{
  max-width: 1100px;
  width: 92%;
}

.flow-inner img{
  width: 100%;
  max-height: 260px;        /* hard cap */
  object-fit: contain;
  display: block;
  margin: 0 auto;

  opacity: 0.9;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
}

/* ===== FLOW DIAGRAM INSIDE PANEL (controlled size) ===== */

.flow-inpanel{
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: center;
}

.flow-inpanel img{
  width: 100%;
  max-width: 760px;      /* keeps it subtle */
  max-height: 150px;     /* prevents it from dominating */
  object-fit: contain;
  display: block;

  opacity: 0.92;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

/* ===== Optical matching per division ===== */

body.sk-page .flow-inpanel img{
  max-height: 165px;
}

body.discovery-page .flow-inpanel img{
  max-height: 158px;
}

/* tighter vertical padding for this specific panel */
.aluminium-panel--tight{
  padding-top: 28px;
  padding-bottom: 28px;
}

/* ===== MOBILE HEADER SAFETY ===== */

@media (max-width: 720px){

  header{
    min-height: 116px;
    padding: 24px 18px 20px 112px;
  }

  .sks-header-logo{
    top: 22px;
    left: 22px;
    transform: none;

    width: 72px;
    height: 72px;
  }

  header h1{
    font-size: 26px;
    line-height: 1.12;
    text-align: center;
  }

  header p{
    font-size: 14.5px;
    line-height: 1.35;
    text-align: center;
  }
}

@media (max-width: 1024px) and (orientation: portrait){

  html,
  body{
    min-height: 100svh;
  }

  body,
  body.sea-page,
  body.sk-page,
  body.discovery-page{
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  body::after,
  body.sea-page::after,
  body.sk-page::after,
  body.discovery-page::after{
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

}@media (max-width: 950px) and (orientation: landscape){

  .sks-header-logo{
    width: 56px;
    height: 56px;
    top: 18px;
    left: 18px;
  }

  header{
    padding-left: 92px;
  }

  header p{
    font-size: 13px;
    line-height: 1.25;
  }
}

@media (max-width: 720px){

  :where(#sea-enquiry, .enquiry-page) input,
  :where(#sea-enquiry, .enquiry-page) select,
  :where(#sea-enquiry, .enquiry-page) textarea{
    max-width: 100%;
    min-width: 0;
  }
}

input[type="date"]{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 950px){

  #deadlineDate{
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    padding: 12px 12px !important;
    min-height: 46px;
    -webkit-appearance: none;
    appearance: none;
  }
}