/* =========================================================
   SIGMA GÜMRÜK — RESPONSIVE CSS
   ========================================================= */

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

:root {
  --bg: #0b0f14;
  --bg-soft: #141a22;

  --accent: #4f9cf9;
  --accent-light: #70b3ff;
  --accent-glow: rgba(79, 156, 249, 0.4);

  --nav-outline: rgba(79, 156, 249, 0.45);

  --text: #f1f5f9;
  --text-dim: #8b949e;

  --border: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   GLOBAL
   ========================================================= */

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  font-family: "Nunito", system-ui, sans-serif;
  background:
    radial-gradient(
      circle at 50% 35%,
      #111a27 0%,
      var(--bg) 48%,
      #080b10 100%
    );
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none !important;
}


/* =========================================================
   LOADING SCREEN
   ========================================================= */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.5s ease;
}

.loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  width: min(320px, 80vw);
  text-align: center;
}

.loader-logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5em;
  margin-bottom: 2rem;
  color: var(--text);
  animation: sigma-pulse 1.6s ease-in-out infinite;
}

@keyframes sigma-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

.loader-bar {
  height: 4px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    #397fd8,
    #70b3ff
  );
  border-radius: 999px;
  transition: width 0.15s ease;
}

.loader-percent {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}


/* =========================================================
   LANGUAGE SCREEN
   ========================================================= */

.lang-screen {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      #111c2a,
      var(--bg) 65%
    );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  animation: fade-in 0.6s ease;
}

.lang-inner {
  width: 100%;
  max-width: 600px;
  padding: 1.5rem;
  text-align: center;
}

.lang-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.lang-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lang-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 150px;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  backdrop-filter: blur(15px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.lang-btn:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: rgba(79, 156, 249, 0.08);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3);
}

.lang-flag {
  font-size: 2.4rem;
}

.lang-name {
  font-weight: 700;
}


/* =========================================================
   SITE
   ========================================================= */

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: fade-in 0.6s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* =========================================================
   NAV ISLAND
   ========================================================= */

.nav-island {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;

  width: 56px;
  height: 56px;

  border-radius: 999px;
  background: #000;
  border: 1.5px solid var(--nav-outline);

  overflow: hidden;

  box-shadow:
    0 0 0 var(--accent-glow),
    0 10px 30px rgba(0, 0, 0, 0.45);

  animation:
    island-breathe 2.2s ease-in-out infinite;

  transition:
    width 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease,
    border-radius 0.3s ease,
    box-shadow 0.3s ease;
}

@keyframes island-breathe {
  0%,
  100% {
    box-shadow:
      0 0 0 var(--accent-glow),
      0 10px 30px rgba(0, 0, 0, 0.45);
  }

  50% {
    box-shadow:
      0 0 0 7px transparent,
      0 10px 30px rgba(0, 0, 0, 0.45);
  }
}

.nav-island.expanded {
  width: clamp(560px, 62vw, 760px);
  height: 64px;

  background:
    rgba(10, 15, 22, 0.78);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  animation: none;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.45);
}

.nav-island-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding: 0 1.75rem;

  white-space: nowrap;

  opacity: 0;
  transform: scale(0.92);

  transition:
    opacity 0.4s ease 0.25s,
    transform 0.4s ease 0.25s;
}

.nav-island.expanded .nav-island-inner {
  opacity: 1;
  transform: scale(1);
}


/* =========================================================
   NAV LOGO
   ========================================================= */

.nav-island-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-island-logo img {
  display: block;
  width: auto;
  height: 50px;
}


/* =========================================================
   NAV LINKS
   ========================================================= */

.nav-island-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex: 1;
}

.nav-island-links a {
  position: relative;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.nav-island-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-island-links a:hover {
  color: var(--text);
}

.nav-island-links a:hover::after {
  width: 70%;
}


/* =========================================================
   NAV ACTIONS
   ========================================================= */

.nav-island-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}


/* =========================================================
   SIGN IN
   ========================================================= */

.nav-signin {
  padding: 0.35rem 0.9rem;

  border: 1px solid var(--nav-outline);
  border-radius: 999px;

  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}

.nav-signin:hover {
  border-color: var(--accent);
  background: rgba(79, 156, 249, 0.1);
}

.nav-signin:active {
  transform: scale(0.94);
}

.nav-dropdown-signin {
  display: block;

  margin-top: 0.4rem;
  padding-top: 0.8rem;

  border-top: 1px solid #21262d;

  color: var(--accent) !important;
  font-weight: 700;
}


/* =========================================================
   LANGUAGE TOGGLE
   ========================================================= */

.lang-toggle {
  min-width: 42px;
  margin-right: 0.5rem;
  padding: 0.35rem 0.8rem;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  color: var(--text);
  font-family: inherit;
  font-size: 0.8rem;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.lang-toggle:hover {
  border-color: var(--accent);
  background: rgba(79, 156, 249, 0.08);
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 4px;

  width: 34px;
  height: 34px;

  padding: 0;
  border: none;
  background: transparent;

  cursor: pointer;
  border-radius: 10px;
}

.nav-menu-toggle span {
  display: block;

  width: 19px;
  height: 2px;

  background: var(--text);
  border-radius: 99px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-menu-toggle.active span:nth-child(1) {
  transform:
    translateY(6px)
    rotate(45deg);
}

.nav-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-menu-toggle.active span:nth-child(3) {
  transform:
    translateY(-6px)
    rotate(-45deg);
}


/* =========================================================
   MOBILE DROPDOWN
   ========================================================= */

.nav-dropdown {
  position: fixed;

  top: 70px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 49;

  width: min(94vw, 340px);

  max-height: 0;

  opacity: 0;

  overflow: hidden;

  pointer-events: none;

  display: flex;
  flex-direction: column;

  padding: 0 1.25rem;

  background:
    rgba(10, 15, 22, 0.82);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border:
    1.5px solid var(--nav-outline);

  border-top: none;

  border-radius:
    0 0 22px 22px;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45);

  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.nav-dropdown.open {
  max-height: 300px;
  opacity: 1;
  pointer-events: auto;

  padding: 1rem 1.25rem;
}

.nav-dropdown a {
  padding: 0.7rem 0.1rem;

  color: var(--text-dim);

  text-decoration: none;

  font-size: 0.92rem;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  color: var(--text);
  padding-left: 0.35rem;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  flex: 1;

  min-height: 70vh;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding:
    8rem 1.5rem 4rem;

  gap: 1.25rem;

  overflow: hidden;
}


/* =========================================================
   WORLD MAP
   ========================================================= */

.hero-map {
  position: absolute;

  top: 46%;
  left: 50%;

  transform:
    translate(-50%, -50%);

  width:
    min(1100px, 94vw);

  aspect-ratio: 610 / 409;

  z-index: 0;

  pointer-events: none;
}

.hero-map-img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;

  opacity: 0.42;

  filter:
    drop-shadow(
      0 0 55px
      rgba(79, 156, 249, 0.12)
    );
}

.hero-map-network {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;
}

.hero-arc {
  fill: none;

  stroke: var(--accent);

  stroke-width: 1.4;

  stroke-linecap: round;

  opacity: 0.5;

  stroke-dasharray: 4 7;

  animation:
    hero-arc-flow
    3.5s linear infinite;
}

@keyframes hero-arc-flow {
  to {
    stroke-dashoffset: -110;
  }
}

.hero-dot {
  fill: var(--accent);
}

.hero-dot--hub {
  fill: #fff;

  filter:
    drop-shadow(0 0 5px #fff)
    drop-shadow(
      0 0 10px
      rgba(79, 156, 249, 0.9)
    );
}

.hero-pulse {
  fill: none;

  stroke: var(--accent);

  stroke-width: 1.5;

  opacity: 0.6;

  transform-box: fill-box;
  transform-origin: center;

  animation:
    hero-pulse-ring
    2.6s ease-out infinite;
}

@keyframes hero-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(4.5);
    opacity: 0;
  }
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1.25rem;

  /* DESKTOP POSITION */
  transform: translateY(0);
}

.hero-content::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 280px;

  background:
    radial-gradient(
      circle,
      rgba(79, 156, 249, 0.08),
      rgba(79, 156, 249, 0.025) 45%,
      transparent 72%
    );

  filter: blur(20px);

  z-index: -1;

  pointer-events: none;
}

.hero-eyebrow {
  margin: 0;

  color: var(--text-dim);

  font-size: 0.85rem;
  font-weight: 800;

  letter-spacing: 0.2em;
}

.hero h1 {
  max-width: 700px;

  font-size:
    clamp(1.8rem, 5vw, 3rem);

  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -0.02em;
}

.hero p {
  max-width: 520px;

  color: var(--text-dim);

  line-height: 1.6;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  position: relative;

  overflow: hidden;

  margin-top: 0.5rem;

  min-height: 46px;

  padding:
    0.8rem 2rem;

  border: none;

  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      var(--accent-light),
      #397fd8
    );

  color: #fff;

  font-family: inherit;

  font-size: 1rem;
  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 10px 28px
    rgba(79, 156, 249, 0.22);

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.cta:hover {
  filter: brightness(1.1);

  transform: translateY(-2px);

  box-shadow:
    0 14px 32px
    rgba(79, 156, 249, 0.3);
}

.cta:active {
  transform: scale(0.96);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
  max-width: 1200px;

  margin: -200px auto 0;

  padding: 2.5rem 1.5rem 6rem;

  scroll-margin-top: 100px;
}

.section-header {
  max-width: 640px;

  margin: 0 auto 3rem;

  text-align: center;
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;

  letter-spacing: 0.2em;

  color: var(--text-dim);

  margin: 0 0 0.75rem;
}

.section-header h2 {
  font-size:
    clamp(1.6rem, 4vw, 2.4rem);

  font-weight: 800;

  margin: 0 0 0.75rem;
}

.section-subtitle {
  color: var(--text-dim);

  line-height: 1.6;

  margin: 0;
}

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 1.5rem;
}

.service-card {
  background: var(--bg-soft);

  border: 1px solid #21262d;

  border-radius: 16px;

  padding: 2rem 1.75rem;

  text-align: left;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);

  border-color: var(--nav-outline);

  background: #1c2430;
}

.service-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin-bottom: 1.25rem;

  border-radius: 12px;

  background:
    rgba(79, 156, 249, 0.12);

  color: var(--accent);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;

  margin: 0 0 0.5rem;
}

.service-card p {
  font-size: 0.92rem;

  line-height: 1.6;

  color: var(--text-dim);

  margin: 0;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
  max-width: 1100px;

  margin: 0 auto;

  padding: 5rem 1.5rem 6rem;

  scroll-margin-top: 100px;
}

.about-grid {
  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;

  gap: 3rem;

  align-items: start;

  text-align: left;
}

.about-text {
  font-size: 1.02rem;

  line-height: 1.8;

  color: var(--text-dim);

  margin: 0;
}

.about-highlights {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.about-highlights li {
  display: flex;

  align-items: center;

  gap: 0.85rem;

  padding: 0.9rem 1.1rem;

  background: var(--bg-soft);

  border: 1px solid #21262d;

  border-radius: 12px;

  font-weight: 600;
  font-size: 0.95rem;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.about-highlights li:hover {
  border-color: var(--nav-outline);

  transform: translateX(4px);
}

.about-highlights svg {
  flex-shrink: 0;

  width: 20px;
  height: 20px;

  color: var(--accent);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  max-width: 1100px;

  margin: 0 auto;

  padding: 5rem 1.5rem 6rem;

  scroll-margin-top: 100px;
}

.contact-grid {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 3rem;

  align-items: start;

  text-align: left;
}

.contact-info {
  display: flex;

  flex-direction: column;

  gap: 1.5rem;
}

.contact-info-item {
  display: flex;

  gap: 1rem;

  align-items: flex-start;
}

.contact-info-item svg {
  flex-shrink: 0;

  width: 22px;
  height: 22px;

  margin-top: 0.15rem;

  color: var(--accent);
}

.contact-info-label {
  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--text-dim);

  margin: 0 0 0.25rem;
}

.contact-info-value {
  line-height: 1.5;

  margin: 0;
}

.contact-info-value span {
  display: block;

  margin-bottom: 0.35rem;
}

.contact-info-value span:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CONTACT MESSAGE BUTTON
   ========================================================= */

.contact-message-btn {
  margin-top: 0.75rem;

  align-self: flex-start;
}


/* =========================================================
   FORM FIELDS
   (shared by the message modal and, if you add it back,
   any other form on the site)
   ========================================================= */

.contact-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 1.1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;

  gap: 0.4rem;

  margin-bottom: 1.1rem;
}

.contact-field label {
  font-size: 0.85rem;
  font-weight: 600;

  color: var(--text-dim);
}

.contact-field input,
.contact-field textarea {
  padding: 0.7rem 0.9rem;

  background: var(--bg);

  border: 1px solid #30363d;
  border-radius: 10px;

  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;

  resize: vertical;

  transition: border-color 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form-note {
  margin: 0.75rem 0 0;

  font-size: 0.9rem;

  color: var(--accent);
}

.contact-form-note.error {
  color: #f47171;
}

@media (max-width: 560px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MESSAGE MODAL
   ========================================================= */

.modal {
  position: fixed;
  inset: 0;

  z-index: 200;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1.5rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;

  width: min(520px, 100%);

  max-height: 90vh;
  overflow-y: auto;

  padding: 2rem;

  background: var(--bg-soft);

  border: 1px solid #21262d;
  border-radius: 20px;

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);

  animation: fade-in 0.25s ease;
}

.modal-card h3 {
  margin: 0 0 1.5rem;

  font-size: 1.3rem;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;

  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.06);

  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;

  cursor: pointer;

  transition: background 0.2s ease, transform 0.15s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.modal-close:active {
  transform: scale(0.9);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 1.5rem;

  text-align: center;

  color: var(--text-dim);

  font-size: 0.9rem;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.06);
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 1024px) {

  /* ---------------- NAV ---------------- */

  .nav-island.expanded {
    width:
      calc(100vw - 24px);

    height: 56px;

    top: 12px;

    border-radius: 18px;
  }

  .nav-island-inner {
    padding:
      0 0.7rem 0 1rem;

    gap: 0.4rem;
  }

  .nav-island-links {
    display: none;
  }

  .nav-signin {
    display: none;
  }

  .nav-island-logo img {
    height: 52px;
    max-width: 190px;
  }

  .nav-island-actions {
    gap: 0.25rem;
  }

  .nav-menu-toggle {
    display: flex !important;

    width: 36px;
    height: 36px;
  }


  /* ---------------- HERO ---------------- */

  .hero {
    min-height: 100svh;
    min-height: 100dvh;

    padding:
      4.5rem
      1.25rem
      3rem;

    justify-content: flex-start;

    gap: 0.9rem;
  }


  /*
   * THIS IS THE IMPORTANT PART.
   *
   * The hero text is moved DOWN by 5rem.
   *
   * Change 5rem to:
   *
   * 3rem  = slightly down
   * 5rem  = current
   * 7rem  = much further down
   * 9rem  = very far down
   */

  .hero-content {
    transform: translateY(5rem);
  }


  /* ---------------- MAP ---------------- */

  .hero-map {
    width: 175vw;

    max-width: none;

    top: 40%;

    opacity: 0.52;

    transform:
      translate(-50%, -50%)
      scale(1);
  }

  .hero-map-img {
    opacity: 0.30;

    filter:
      drop-shadow(
        0 0 45px
        rgba(79, 156, 249, 0.14)
      );
  }

  .hero-map-network {
    opacity: 0.85;
  }


  /* ---------------- HERO TEXT ---------------- */

  .hero-content {
    width: 100%;

    max-width: 390px;

    gap: 0.9rem;

    padding:
      0 0.2rem;
  }

  .hero-eyebrow {
    font-size: 0.68rem;

    letter-spacing: 0.18em;
  }

  .hero h1 {
    max-width: 370px;

    font-size:
      clamp(
        1.9rem,
        8.8vw,
        2.45rem
      );

    line-height: 1.1;

    letter-spacing: -0.035em;
  }

  .hero p {
    max-width: 340px;

    font-size: 0.9rem;

    line-height: 1.55;
  }


  /* ---------------- SERVICES ---------------- */

  .services {
    margin: 0 auto;

    padding:
      5rem 1.5rem 6rem;
  }

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


  /* ---------------- ABOUT ---------------- */

  .about-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }


  /* ---------------- CONTACT ---------------- */

  .contact-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .contact-info-item {
    text-align: left;
  }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 600px) {

  .services {
    padding:
      4rem 1.25rem 5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding:
      3.5rem 1.25rem 4.5rem;
  }

  .contact {
    padding:
      3.5rem 1.25rem 4.5rem;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

  .nav-island.expanded {
    width:
      calc(100vw - 18px);
  }

  .nav-island-logo img {
    height: 40px;
    max-width: 200px;
  }

  .hero-map {
    width: 190vw;
    top: 69%;
  }

  .hero h1 {
    font-size: 1.78rem;
  }

  .hero p {
    font-size: 0.86rem;
  }

  /*
   * EXTRA SMALL PHONE:
   * slightly less downward movement
   */

  .hero-content {
    transform: translateY(4rem);
  }
}


/* =========================================================
   iPAD LANDSCAPE
   ========================================================= */

@media (orientation: landscape)
       and (min-width: 768px)
       and (max-height: 1100px) {

  .services {
    margin: 0 auto;
    padding-top: 5rem;

    position: relative;
    z-index: 5;
  }

  .hero {
    min-height: 100dvh;

    padding-bottom: 5rem;
  }

  /*
   * Landscape gets its own position.
   * This prevents the previous rule from
   * overriding it.
   */

  .hero-content {
    transform: translateY(3rem);
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nav-island,
  .nav-island-inner,
  .nav-dropdown,
  .nav-menu-toggle span,
  .hero-arc,
  .hero-pulse,
  .loader-logo {
    animation: none !important;

    transition: none !important;
  }
}
