:root {
  --ink: #151f24;
  --muted: #647176;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --teal: #0f6868;
  --teal-dark: #0b3f44;
  --coral: #e76f51;
  --gold: #d7a84b;
  --line: rgba(21, 31, 36, 0.13);
  --shadow: 0 24px 70px rgba(15, 45, 48, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

p {
  text-align: justify;
  text-justify: inter-word;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.95);
  box-shadow: 0 12px 30px rgba(15, 45, 48, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: inline-grid;
  align-items: center;
  min-width: 0;
  width: clamp(92px, 11vw, 128px);
  height: 58px;
  font-weight: 800;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 160ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-white {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(15, 104, 104, 0.1);
  color: var(--teal);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 4px;
}

.site-header.is-scrolled .language-switch {
  border-color: var(--line);
}

.language-switch button {
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  padding: 8px 9px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch button.active {
  background: var(--coral);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 76px) 76px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 22, 25, 0.9) 0%, rgba(7, 22, 25, 0.72) 28%, rgba(7, 22, 25, 0.26) 48%, rgba(7, 22, 25, 0.04) 68%, rgba(7, 22, 25, 0) 100%),
    linear-gradient(0deg, rgba(7, 22, 25, 0.42) 0%, rgba(7, 22, 25, 0.12) 34%, rgba(7, 22, 25, 0) 62%);
}

.hero-content {
  position: relative;
  width: min(790px, 100%);
  min-width: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--coral);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.section h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6.8vw, 6.4rem);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
  text-align: justify;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  text-align: center;
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--coral);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.section {
  width: 100%;
  max-width: 100vw;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 76px);
}

.about-layout,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  min-width: 0;
}

.section h2,
.contact-card h2 {
  font-size: clamp(2rem, 4.5vw, 4.3rem);
}

.bio-text,
.contact-card p {
  min-width: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.bio-text p:first-child {
  margin-top: 0;
}

.sendwave-band {
  display: flex;
  width: 100%;
  max-width: 100vw;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 5vw, 54px) clamp(20px, 6vw, 76px);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(135deg, #ffe500 0%, #ffd400 100%);
  color: #4b0d1a;
  border-top: 1px solid rgba(75, 13, 26, 0.08);
  border-bottom: 1px solid rgba(75, 13, 26, 0.08);
}

.sendwave-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(16px, 3vw, 28px);
}

.sendwave-brand img {
  width: clamp(72px, 9vw, 118px);
  flex: 0 0 auto;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(75, 13, 26, 0.18);
}

.sendwave-brand p {
  min-width: 0;
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-align: left;
}

.sendwave-brand span {
  color: rgba(75, 13, 26, 0.78);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.sendwave-band .button.primary {
  background: #4b0d1a;
  color: #fff8d0;
  box-shadow: 0 18px 32px rgba(75, 13, 26, 0.22);
}

.contact {
  background: #f2f5f1;
}

.contact-card {
  width: 100%;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.email-link {
  display: inline-block;
  max-width: 100%;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(231, 111, 81, 0.2);
  border-color: var(--coral);
}

.social h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 4.3rem);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.social-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 168px;
  align-items: center;
  justify-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(21, 31, 36, 0.04);
  transition: transform 160ms ease, border 160ms ease, box-shadow 160ms ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--social-color);
}

.social-card span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: rgba(21, 31, 36, 0.04);
}

.social-card img {
  width: 34px;
  height: 34px;
}

.social-card strong {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.social-card small {
  max-width: 100%;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--social-color);
  box-shadow: 0 18px 36px rgba(21, 31, 36, 0.1);
}

.instagram {
  --social-color: #e4405f;
}

.facebook {
  --social-color: #1877f2;
}

.tiktok {
  --social-color: #111111;
}

.youtube {
  --social-color: #ff0000;
}

.site-footer {
  display: flex;
  width: 100%;
  max-width: 100vw;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
  text-align: left;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 930px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    padding: 12px;
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .language-switch {
    align-self: start;
    color: var(--ink);
    border-color: var(--line);
  }

  .about-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    width: 86px;
    height: 48px;
  }

  .hero {
    align-items: start;
    min-height: 90vh;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 88px;
    padding-bottom: 54px;
  }

  .hero-image img {
    object-position: center top;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.06;
    max-width: 96%;
  }

  .hero p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.55;
    max-width: 94%;
    text-align: left;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.58rem;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero .button {
    min-height: 38px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.78rem;
  }

  .section,
  .sendwave-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 22, 25, 0.72) 0%, rgba(7, 22, 25, 0.34) 48%, rgba(7, 22, 25, 0) 100%),
      linear-gradient(180deg, rgba(7, 22, 25, 0.76) 0%, rgba(7, 22, 25, 0.48) 48%, rgba(7, 22, 25, 0) 100%);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 82% 40%, 100% 46%;
  }

  .hero-actions,
  .sendwave-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .sendwave-brand {
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .social-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    width: 78px;
    height: 44px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 82px;
  }

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

  .hero p:not(.eyebrow) {
    font-size: 0.75rem;
  }

  .section,
  .sendwave-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sendwave-brand {
    flex-direction: column;
  }

  .sendwave-brand img {
    width: 82px;
  }

  .contact-card {
    padding: 24px 16px;
  }
}

@media (max-width: 340px) {
  .brand {
    width: 68px;
    height: 40px;
  }

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

  .hero-actions {
    gap: 7px;
  }

  .hero .button {
    min-height: 34px;
    font-size: 0.7rem;
    padding-left: 14px;
    padding-right: 14px;
  }
}
