/* =========================
   1. Variables
========================= */

:root {
  --bg: #f4f8fa;
  --surface: #ffffff;
  --surface-soft: #eef6f8;
  --section-alt: #e7f1f4;

  --text: #10232d;
  --muted: #5f7078;
  --border: #d5e2e6;

  --accent: #267c94;
  --accent-dark: #123946;
  --warm-accent: #f28b6b;

  --hero-text: #ffffff;
  --hero-muted: rgba(255, 255, 255, 0.78);
  --hero-line: rgba(255, 255, 255, 0.28);

  --max-width: 1100px;
  --radius: 18px;
}


/* =========================
   2. Base / Reset
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  font-size: 17px;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* =========================
   3. Typography
========================= */

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.8rem, 7vw, 3.25rem);
  max-width: 900px;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
}

p {
  max-width: 720px;
  margin: 0 0 1rem;
}

ul,
ol {
  max-width: 720px;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.project-type {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}


/* =========================
   4. Layout Helpers
========================= */

main {
  width: 100%;
}

section {
  padding: 5rem 1.25rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-alt {
  background: var(--section-alt);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.split-heading {
  text-align: left;
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.split-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}


/* =========================
   5. Header / Navigation
========================= */

.site-header {
  width: min(var(--max-width), calc(100% - 2.5rem));
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.55);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 12px 32px rgba(4, 13, 31, 0.22);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--hero-text);
  text-decoration: none;
}

.site-brand:hover {
  text-decoration: none;
}

.site-brand img {
  height: 42px;
  width: auto;
  display: block;
}

.site-brand span {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--hero-text);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--hero-text);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--hero-line);
  border-radius: 50%;
  cursor: pointer;
  padding: 0.65rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--hero-text);
  margin: 5px 0;
  border-radius: 2px;
}


.spec-link{
  text-decoration: none;
  font-weight: 600;
  color: var(--accent);
}


.spec-link:hover{

  color:var(--warm-accent);
  transition: all 0.2s ease;
}

.contact-bold{
  font-weight: 600;
}



/* UNDER CONSTRUCTION */
/*.page-hero--seo {
  --hero-image: url("../images/hero-reflection-water-3.webp");
}*/



.construction-page {
  min-height: 100vh;
  display: flex;
  align-items: center;

  padding: 7rem 1.25rem 5rem;

  color: var(--hero-text);

  background:
    linear-gradient(
      90deg,
      rgba(4, 13, 31, 0.78),
      rgba(4, 13, 31, 0.42)
    ),
    url("../images/hero-reflection-water-3.webp");

  background-size: cover;
  background-position: center;
}

.construction-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.construction-content h1,
.construction-content p {
  color: var(--hero-text);
}

.construction-content p:not(.eyebrow) {
  color: var(--hero-muted);
}

.construction-brand {
  margin-bottom: 3rem;
  display: inline-flex;
}


/* =========================
   6. Buttons
========================= */

.button,
section > a,
.project-card a {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.78rem 1.08rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  transition: all 0.2s ease;
}

.button:hover,
section > a:hover,
.project-card a:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.button-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.button-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  backdrop-filter: blur(16px) saturate(145%);
}

.button-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent-dark);
}

.button-ghost {
  background: rgba(2, 10, 24, 0.22);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.cta-box .button-light,
.cta-box .button {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}


/* =========================
   7. Homepage Hero
========================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 1.25rem 5rem;
  color: var(--hero-text);
  background-image:
    linear-gradient(90deg, rgba(4, 13, 31, 0.72) 0%, rgba(4, 13, 31, 0.46) 46%, rgba(4, 13, 31, 0.12) 100%),
    url("../images/hero-reflection-water-2.webp"),
    linear-gradient(120deg, #008cff, #4427c8 56%, #ff6a2f);
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 58%, rgba(255, 112, 48, 0.36), transparent 28%),
    radial-gradient(circle at 22% 28%, rgba(0, 180, 255, 0.28), transparent 32%),
    radial-gradient(circle at 62% 34%, rgba(128, 70, 255, 0.20), transparent 34%);
  filter: blur(28px) saturate(130%);
  mix-blend-mode: screen;
  opacity: 0.75;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 34%),
    radial-gradient(circle at 70% 54%, rgba(255, 255, 255, 0.10), transparent 24%);
  backdrop-filter: blur(1px) saturate(118%) contrast(106%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-text {
  max-width: 640px;
  padding: 1.25rem;
}

.hero-section h1,
.hero-section p {
  color: var(--hero-text);
}

/* .hdr2{
  display:none;
} */

.mobile-break {
  display: none;
}

.hero-section .hero-intro {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-section p:not(.eyebrow) {
  color: var(--hero-muted);
}

.hero-eyebrow {
  color: #ffd7c2;
}

.hero-photo-mobile {
  display: none;
}

.hero-photo-desktop {
  max-width: 420px;
  justify-self: end;
}

.hero-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}


/* =========================
   8. Reusable Page Heroes
========================= */

.page-hero {
  max-width: none;
  margin: 0;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(7rem, 12vw, 10rem)
    clamp(3rem, 9vw, 8rem)
    clamp(4.5rem, 8vw, 6rem);
  background:
    linear-gradient(
      90deg,
      rgba(7, 16, 31, 0.82),
      rgba(7, 16, 31, 0.38)
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero h1,
.page-hero p {
  width: min(760px, 100%);
  color: #fff;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
}

.page-hero .button {
  width: fit-content;
  align-self: flex-start;
}

/* Hero image modifiers */
.page-hero--web,
.service-page-hero {
  --hero-image: url("../images/hero-reflection-water-3.webp");
}

.page-hero--projects,
.projects-hero {
  --hero-image: url("../images/hero-reflection-water-2.webp");
}

/* .page-hero--about {
  --hero-image: url("../images/hero-reflection-water-1.webp");
} */

.page-hero--about {
  --hero-image: url("../images/David-Flynn-Berlin-Office.webp");
    background:
    linear-gradient(
      90deg,
      rgba(7, 16, 31, 0.88),
      rgba(7, 16, 31, 0.58)
    ),
    var(--hero-image);
      background-position: 42% center;
  background-size: cover;
}


/* .page-hero--contact {
  --hero-image: url("../images/hero-reflection-water-1a.webp");
}
 */



/* Temporary compatibility for old page-specific hero classes */
.service-page-hero,
.projects-hero {
  max-width: none;
  margin: 0;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(7rem, 12vw, 10rem)
    clamp(3rem, 9vw, 8rem)
    clamp(4.5rem, 8vw, 6rem);
  background:
    linear-gradient(
      90deg,
      rgba(7, 16, 31, 0.82),
      rgba(7, 16, 31, 0.38)
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.service-page-hero h1,
.service-page-hero p,
.projects-hero h1,
.projects-hero p {
  width: min(760px, 100%);
  color: #fff;
}

.service-page-hero p,
.projects-hero p {
  color: rgba(255,255,255,0.9);
}

.service-page-hero .button,
.projects-hero .button {
  width: fit-content;
  align-self: flex-start;
}



/* =========================
   9. Feature / Service Cards
========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-item {
  padding: 1.5rem 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(16, 35, 45, 0.05);
}


/* =========================
   10. Project Cards
========================= */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 14px 30px rgba(16, 35, 45, 0.05);
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 38px rgba(16, 35, 45, 0.09);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #eef6f8;
}

.project-card h3 {
  margin-bottom: 0.35rem;
}

.project-card p:last-of-type {
  margin-bottom: 1.25rem;
}

.project-card a {
  margin-top: auto;
}


/* =========================
   11. Process
========================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-card {
  text-align: center;
  padding: 2rem 1.25rem;
}

.process-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}

.process-card h3 {
  margin-bottom: 0.75rem;
}

.process-card p {
  margin-left: auto;
  margin-right: auto;
}


/* =========================
   12. Homepage: Philosophy / What I Do
========================= */

.philosophy-section {
  padding-bottom: 8rem;
}

.what-i-do-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 1.25rem 6rem;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.08)
    ),
    url("../images/David-Flynn-Hero-Image.webp");
  background-size: cover;
  background-position: center;
}

.what-i-do-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12,18,28,0.08) 0%,
      rgba(12,18,28,0.02) 45%,
      rgba(255,255,255,0.16) 100%
    );
  pointer-events: none;
}

.what-i-do-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.what-i-do-content {
  grid-column: 2;
}

.what-i-do-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.what-i-do-mobile {
  display: none;
}

.what-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.what-card h3 {
  margin-bottom: 0.65rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;

  font-weight: 600;
  color: var(--accent-dark);

  text-decoration: none;
}

.text-link:hover {
  text-decoration: none;
  opacity: 0.8;
}



.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}



.about-photo {
  width: 100%;
}

.about-photo img {
  width: 100%;
  max-width: 420px;

  height: auto;
  display: block;

  border-radius: 22px;
  border: 1px solid var(--border);

  box-shadow: 0 18px 40px rgba(16,35,45,0.08);
}


/* =========================
   Contact
========================= */

/* .page-hero--contact {
  --hero-image: url("../images/hero-reflection-water-1a.webp");
}
 */


.page-hero-c {
  max-width: none;
  margin: 0;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(7rem, 12vw, 10rem)
    clamp(3rem, 9vw, 8rem)
    clamp(4.5rem, 8vw, 6rem);
  background:
    linear-gradient(
      90deg,
      rgba(7, 16, 31, 0),
      rgba(7, 16, 31, 0)
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}


.page-hero--contact {
  --hero-image: url("../images/David-Flynn-Berlin-Office-contact.webp");
}


.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 14px 30px rgba(16, 35, 45, 0.05);
}

.contact-card p {
  margin-bottom: 1.25rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

/* =========================
   Legal & Privacy
========================= */

.plain-page {
  padding-top: clamp(8rem, 14vw, 11rem);
}

.plain-page h1 {
  margin-bottom: 2rem;
}

.plain-page h2 {
  margin-top: 2.5rem;
}

/* =========================
    Projects
========================= */


.page-hero--project {
  --hero-image: url("../images/hero-reflection-water-2.webp");
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.case-study-meta article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.case-study-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: auto;
}

.case-hero {
  padding:
    clamp(7rem, 11vw, 9rem)
    1.25rem
    3rem;

  background:
    linear-gradient(
      90deg,
      rgba(7,16,31,0.82),
      rgba(7,16,31,0.42)
    ),
    var(--hero-image);

  background-size: cover;
  background-position: center;

  color: #fff;
}

.case-hero .section-inner > * {
  max-width: 760px;
}

.case-hero h1,
.case-hero p {
  color: #fff;
}

.case-overview {
  padding-top: 2rem;
}

.case-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.case-details {
  display: grid;
  gap: 2rem;
}

.case-details h3 {
  margin-bottom: 0.25rem;
}


.case-study-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}


.case-study-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.case-study-gallery img {
  width: 100%;
  border-radius: var(--radius);

}

.case-study-gallery-phone {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 320px));
  justify-content: center;
  gap: 1.5rem;
}

.case-study-gallery-phone img {
  width: 100%;
  border-radius: var(--radius);
}





/* =========================
   13. CTA
========================= */

.cta-box {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 13, 31, 0.82), rgba(4, 13, 31, 0.46)),
    url("../images/Berlin-TV-Tower-Above-Fog.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 28px;
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.cta-box p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.86);
}


/* =========================
   14. Footer
========================= */

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  white-space: nowrap;
}


/* =========================
   15. Media Queries
========================= */


@media (max-width: 900px) {
  section {
    padding: 3.75rem 1.25rem;
  }

  .page-hero,
  .service-page-hero,
  .projects-hero {
    min-height: auto;
    padding:
      clamp(5rem, 12vw, 10rem)
      1.25rem
      clamp(4rem, 10vw, 6rem);
  }

/*     .page-hero-c {

    padding: 5px, 5px, 0px, 5px;
    margin-bottom: 1rem;
  }
 */

/*  .hdr2{
  display:unset;
 }

  .hdr1{
  display:none;
 }
 */
   .mobile-break {
    display: inline;
  }

  .services-layout,
  .hero-content {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .process-grid,
  .services-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    display: block;
  }

  .split-heading > p {
    margin-top: 1rem;
  }

  .hero-section {
    min-height: 82vh;
    align-items: center;
    padding-top: 7rem;
    background-image:
      linear-gradient(
        90deg,
        rgba(7, 16, 31, 0.84) 0%,
        rgba(7, 16, 31, 0.58) 42%,
        rgba(7, 16, 31, 0.16) 100%
      ),
      url("../images/hero-reflection-water-1a.webp");
    background-size: cover;
    background-position: center;
  }

  .hero-content {
    padding: 7rem 1.25rem 5rem;
  }

  .hero-photo-desktop {
    display: none;
  }

  .hero-photo-mobile {
    display: block;
    max-width: 340px;
    margin: 1.25rem 0 1.75rem;
  }

  .hero-section h1 {
    max-width: 11ch;
    font-size: 2.35rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .what-i-do-section {
    background: var(--surface-soft);
  }

  .what-i-do-layout {
    grid-template-columns: 1fr;
  }

  .what-i-do-content {
    grid-column: auto;
    transform: none;
  }

  .what-card {
    background: #fff;
    backdrop-filter: none;
  }

    .what-i-do-image-section {
    display: none;
  }

  .what-i-do-mobile {
    display: block;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: -1;
  }

  .contact-layout {
  grid-template-columns: 1fr;
}

  .case-study-meta {
    grid-template-columns: 1fr;
  }
      .case-study-gallery {
    grid-template-columns: 1fr;
  }

      .case-study-gallery-phone {
    grid-template-columns: 1fr;

  }

  .case-overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-details {
    gap: 1.25rem;
  }

  .case-hero {
    padding:
      6rem
      1.25rem
      2rem;
  }


} /* end of 900px */


@media (max-width: 800px) {
  .site-header {
    width: calc(100% - 1.5rem);
    top: 0.75rem;
    padding: 0.65rem 0.75rem;
  }

  .site-brand span {
    font-size: 0.95rem;
  }

  .site-brand img {
    height: 38px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    min-width: 220px;
    background: rgba(7, 16, 31, 0.94);
    border: 1px solid var(--hero-line);
    border-radius: 18px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .site-nav.active {
    display: flex;
  }


}


@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }
}
