/* Vinner Consulting — premium educational consulting site */

:root {
  --navy: #0b1f33;
  --navy-deep: #071523;
  --navy-mid: #16324f;
  --ink: #1a2332;
  --muted: #5c6b7a;
  --line: #e4e9ef;
  --cream: #f6f3ee;
  --cream-2: #efeae2;
  --white: #ffffff;
  --gold: #b8956c;
  --gold-soft: #d4b896;
  --teal: #2a6f7a;
  --success: #1b6b4a;
  --error: #a32020;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.12);
  --shadow-sm: 0 8px 24px rgba(11, 31, 51, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  letter-spacing: -0.03em;
}

h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(184, 149, 108, 0.28);
}

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--navy);
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2.5rem, var(--max));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.site-header.is-scrolled .brand {
  color: var(--navy);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--navy-deep);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(184, 149, 108, 0.35);
}

.brand-mark.small {
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-text span {
  font-size: 0.72rem;
  opacity: 0.75;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-header.is-scrolled .nav a {
  color: var(--ink);
}

.nav a:hover {
  color: var(--gold-soft);
}

.site-header.is-scrolled .nav a:hover {
  color: var(--teal);
}

.nav .nav-cta {
  color: var(--navy-deep) !important;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.site-header.is-scrolled .menu-toggle {
  background: var(--cream);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--navy);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Mobile nav open */
@media (max-width: 899px) {
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.25rem 1.5rem 1.75rem;
    box-shadow: var(--shadow);
    gap: 0.25rem;
  }

  .nav.is-open a {
    color: var(--ink);
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border-bottom: 0;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(100vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 35, 0.55) 0%, rgba(7, 21, 35, 0.35) 40%, rgba(7, 21, 35, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 21, 35, 0.55) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
  margin-right: 1.25rem;
  width: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1rem;
}

.eyebrow.dark {
  color: var(--teal);
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin: 1.25rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* —— Trust —— */
.trust {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 0.5rem;
}

.trust-item strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* —— Sections —— */
.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

/* —— About —— */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  z-index: -1;
  width: 55%;
  height: 55%;
  right: -8%;
  bottom: -8%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: var(--radius);
  opacity: 0.55;
}

.about-copy p {
  color: var(--muted);
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 500;
  color: var(--navy);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--cream), 0 0 0 1.5px var(--gold);
}

/* —— Software spotlight —— */
.software {
  background: var(--white);
}

.software-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .software-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
}

.software-copy p {
  color: var(--muted);
}

.software-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.feature-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.feature-list li {
  padding: 1rem 1.1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

/* —— Deploy platforms (smartboard, devices) —— */
.deploy {
  background: var(--cream);
  padding-top: 4rem;
}

.deploy-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .deploy-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }
}

.deploy-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.deploy-copy p {
  color: var(--muted);
}

.device-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.device-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.device-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: transparent;
  font-size: 0;
  position: relative;
  margin-top: 0.15rem;
}

.device-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid var(--navy-deep);
  border-radius: 2px;
  opacity: 0.55;
}

.device-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.device-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* —— Packages / services cards —— */
.packages {
  background: var(--white);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--cream-2);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.service-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42, 111, 122, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

/* —— Consulting band —— */
.consulting {
  background: var(--navy);
  color: var(--white);
}

.consulting .section-head h2,
.light-head h2 {
  color: var(--white);
}

.consulting .section-lead,
.light-head .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.consult-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .consult-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.consult-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
}

.consult-card h3 {
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.consult-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* —— How it works —— */
.how {
  background: var(--white);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--gold);
  color: var(--navy-deep);
}

.steps h3 {
  margin-bottom: 0.35rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Contact —— */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.contact-intro p {
  color: var(--muted);
}

.contact-meta {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-meta h3 {
  margin-bottom: 0.25rem;
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.hours-block h4 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.hours-summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
}

.hours-summary svg {
  transition: transform 0.2s;
}

.hours-summary[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.hours-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  max-width: 280px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.hours-list li.is-today {
  color: var(--navy);
  font-weight: 600;
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 600px) {
  .card {
    padding: 2rem;
  }
}

.contact-form h3 {
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.65rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.req {
  color: var(--error);
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 108, 0.2);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field-file {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.field-file input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.file-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.file-btn:hover {
  border-color: var(--gold);
}

.file-count {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.form-status.light {
  color: rgba(255, 255, 255, 0.9);
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* —— Subscribe —— */
.subscribe {
  position: relative;
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.subscribe-media {
  position: absolute;
  inset: 0;
}

.subscribe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subscribe-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 35, 0.82);
}

.subscribe-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.subscribe h2 {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.subscribe p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .subscribe-form {
    flex-direction: row;
  }
}

.subscribe-form input {
  flex: 1;
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.subscribe-form input:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(184, 149, 108, 0.25);
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.25rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.copyright {
  margin: 0;
  font-size: 0.85rem;
}

/* —— Cookie —— */
.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  max-width: 480px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .cookie {
    left: 1.5rem;
    right: auto;
    margin: 0;
    flex-direction: row;
    align-items: center;
  }
}

.cookie p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie strong {
  color: var(--navy);
}

.cookie[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
