:root {
  --bg-base: #07110d;
  --bg-deep: #0b1f17;
  --bg-panel: rgba(8, 20, 15, 0.62);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f4ec;
  --muted: #d2d6ca;
  --green: #a9ff68;
  --mint: #73f4bf;
  --gold: #f7ca5d;
  --coral: #ff7d61;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(169, 255, 104, 0.16), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255, 125, 97, 0.16), transparent 24%),
    linear-gradient(135deg, var(--bg-base) 0%, #123121 56%, #21573d 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 92%);
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #08100c;
  background: var(--green);
  border-radius: 0.5rem;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.75;
  pointer-events: none;
}

.ambient-one {
  top: 12%;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  background: rgba(115, 244, 191, 0.28);
}

.ambient-two {
  top: 38%;
  right: -2rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 125, 97, 0.2);
}

.ambient-three {
  bottom: 2rem;
  left: 42%;
  width: 18rem;
  height: 18rem;
  background: rgba(247, 202, 93, 0.15);
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 0;
}

.brand,
.top-nav a,
.button,
.contact-card {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.top-nav {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a {
  padding: 0.85rem 1rem;
  color: var(--muted);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 4.8rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 100%;
  font-size: 5rem;
  overflow-wrap: normal;
}

.hero h1 span {
  display: block;
  margin-top: 0.6rem;
  color: var(--green);
}

.hero-text,
.section-heading,
.service-card p,
.contact-copy p,
.form-status {
  color: var(--muted);
}

.hero-text {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #08100c;
  border: 1px solid rgba(8, 16, 12, 0.14);
  background: linear-gradient(135deg, #a5e86f, #d8ed73);
  box-shadow: 0 8px 20px rgba(169, 255, 104, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 10px 24px rgba(169, 255, 104, 0.17);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 38rem;
}

.logo-frame {
  width: min(100%, 32rem);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    var(--shadow),
    0 0 0 1rem rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-visual:hover .logo-frame {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1rem rgba(255, 255, 255, 0.04);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: contrast(1.08) brightness(0.96);
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(5, 13, 10, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.floating-card-left {
  top: 10%;
  left: 0;
}

.floating-card-right {
  right: 2%;
  bottom: 14%;
}

.blossom {
  position: absolute;
  width: 7.5rem;
  aspect-ratio: 1;
}

.blossom::after {
  content: "";
  position: absolute;
  inset: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff4bc 0%, var(--gold) 70%, transparent 100%);
  box-shadow: 0 0 22px rgba(247, 202, 93, 0.48);
}

.blossom span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.6rem;
  height: 3.9rem;
  margin-left: -0.8rem;
  margin-top: -3.2rem;
  border-radius: 999px 999px 0.9rem 0.9rem;
  background: linear-gradient(180deg, rgba(255, 236, 163, 0.94), rgba(255, 125, 97, 0.88));
  transform-origin: center 3.2rem;
  box-shadow: 0 0 18px rgba(255, 125, 97, 0.26);
}

.blossom span:nth-child(1) {
  transform: rotate(0deg);
}

.blossom span:nth-child(2) {
  transform: rotate(60deg);
}

.blossom span:nth-child(3) {
  transform: rotate(120deg);
}

.blossom span:nth-child(4) {
  transform: rotate(180deg);
}

.blossom span:nth-child(5) {
  transform: rotate(240deg);
}

.blossom span:nth-child(6) {
  transform: rotate(300deg);
}

.blossom-left {
  top: 7%;
  right: 6%;
}

.blossom-right {
  bottom: 4%;
  left: 8%;
}

.section {
  padding: 3.4rem 0;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: 3.7rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-card,
.contact-form,
.contact-card {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 1.6rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -46% auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 255, 104, 0.3), transparent 72%);
}

.service-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.28rem;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(169, 255, 104, 0.32);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.service-card p {
  margin: 0;
  line-height: 1.7;
}

.service-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(169, 255, 104, 0.82), rgba(115, 244, 191, 0.32)),
    rgba(255, 255, 255, 0.08);
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 999px 999px 0 999px;
  border: 2px solid rgba(8, 16, 12, 0.7);
  transform: rotate(-35deg);
}

.service-icon-sun::after {
  inset: 28%;
  border-radius: 50%;
  border: 2px solid rgba(8, 16, 12, 0.7);
  box-shadow:
    0 -0.9rem 0 -0.45rem rgba(8, 16, 12, 0.7),
    0 0.9rem 0 -0.45rem rgba(8, 16, 12, 0.7),
    0.9rem 0 0 -0.45rem rgba(8, 16, 12, 0.7),
    -0.9rem 0 0 -0.45rem rgba(8, 16, 12, 0.7);
  transform: none;
}

.service-icon-grid::after {
  inset: 0.76rem;
  border: 2px solid rgba(8, 16, 12, 0.74);
  border-radius: 0.45rem;
  transform: none;
  box-shadow: none;
  background:
    linear-gradient(rgba(8, 16, 12, 0.74), rgba(8, 16, 12, 0.74)) center /
      2px calc(100% - 0.5rem) no-repeat,
    linear-gradient(90deg, rgba(8, 16, 12, 0.74), rgba(8, 16, 12, 0.74)) center /
      calc(100% - 0.5rem) 2px no-repeat;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.contact-copy p {
  max-width: 34rem;
  line-height: 1.7;
}

.contact-links {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 1.3rem;
  color: var(--text);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.contact-card span {
  color: var(--muted);
}

.contact-card strong {
  text-align: right;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 1.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 244, 236, 0.5);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(169, 255, 104, 0.4);
  outline-offset: 1px;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.95rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
  color: rgba(247, 244, 236, 0.72);
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  display: grid;
  place-items: start center;
  min-height: calc(100vh - 8rem);
  padding: 2rem 0 4rem;
}

.legal-card {
  width: min(100%, 56rem);
  min-width: 0;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 3.8rem;
  line-height: 0.95;
  hyphens: auto;
  overflow-wrap: normal;
}

.legal-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.legal-card p {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card a {
  color: var(--green);
  overflow-wrap: anywhere;
}

.legal-card .button-primary {
  color: #08100c;
}

.legal-section {
  margin-top: 1.7rem;
}

.legal-section p {
  max-width: 48rem;
}

.legal-updated {
  margin-top: 0.8rem;
}

.legal-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .site-footer-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 4.4rem;
  }

  .hero-visual {
    min-height: 30rem;
    order: -1;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .floating-card-left {
    left: 4%;
  }

  .floating-card-right {
    right: 4%;
  }
}

@media (max-width: 960px) {
  .contact-section,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 0.35rem;
  }

  .legal-page .top-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 3rem;
    line-height: 1;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .logo-frame {
    width: min(100%, 22rem);
  }

  .floating-card {
    padding: 0.7rem 0.85rem;
    font-size: 0.8rem;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card strong {
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .top-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0.75rem 0.45rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .brand {
    width: 100%;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.4rem;
  }

  .legal-card {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .legal-card h1 {
    font-size: 2.1rem;
    line-height: 1;
  }

  .legal-card h2 {
    font-size: 1.12rem;
  }
}

@media (max-width: 390px) {
  .site-shell {
    width: min(100% - 1rem, 1180px);
  }

  .brand {
    padding: 0.8rem;
    font-size: 0.94rem;
  }

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

  .hero-visual {
    min-height: 21rem;
  }

  .floating-card {
    display: none;
  }

  .blossom {
    width: 5.5rem;
  }

  .quick-facts {
    gap: 0.5rem;
  }

  .quick-facts li {
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
