:root {
  --blue: #58aede;
  --blue-dark: #175a84;
  --blue-soft: #e9f7ff;
  --gold: #c7a45b;
  --ink: #1f2430;
  --muted: #697282;
  --white: #ffffff;
  --shell: #fffafa;
  --line: rgba(31, 36, 48, 0.12);
  --shadow: 0 24px 70px rgba(23, 90, 132, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(88, 174, 222, 0.18), transparent 34%), var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.section-padding {
  padding: 90px 7%;
}

.site-header {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.site-header::before {
  width: 360px;
  height: 360px;
  background: rgba(88, 174, 222, 0.18);
  right: -120px;
  top: 170px;
}

.site-header::after {
  width: 230px;
  height: 230px;
  border: 1px solid rgba(199, 164, 91, 0.45);
  left: -80px;
  bottom: 80px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(23, 90, 132, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(199, 164, 91, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links .nav-cta {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.nav-links .nav-cta {
  border: 1px solid rgba(88, 174, 222, 0.35);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-soft);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 99px;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 90px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-size: clamp(3.1rem, 9vw, 7.8rem);
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.08em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.hero-text,
.section-heading p,
.intro-card p,
.location-card p,
.contact-info p,
.product-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 620px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  box-shadow: 0 16px 35px rgba(23, 90, 132, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(23, 90, 132, 0.34);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-dark);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(88, 174, 222, 0.7);
}

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

.logo-frame {
  width: min(430px, 90vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 46% 54% 52% 48% / 48% 45% 55% 52%;
  border: 1px solid rgba(199, 164, 91, 0.35);
  box-shadow: var(--shadow);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(199, 164, 91, 0.32);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  color: var(--blue-dark);
  box-shadow: 0 18px 50px rgba(23, 90, 132, 0.13);
}

.card-one {
  left: 4%;
  top: 20%;
}

.card-two {
  right: 2%;
  bottom: 23%;
}

.intro {
  padding-top: 30px;
}

.intro-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-soft), #ffffff 58%, rgba(199, 164, 91, 0.14));
  border: 1px solid rgba(88, 174, 222, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.decor-dot {
  position: absolute;
  right: 42px;
  top: 36px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 174, 222, 0.35), transparent 70%);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(23, 90, 132, 0.09);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(88, 174, 222, 0.55);
}

.product-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(199, 164, 91, 0.18));
  color: var(--blue-dark);
  font-size: 1.4rem;
}

.gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--shell) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  min-height: 320px;
  padding: 16px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(88, 174, 222, 0.16);
  box-shadow: 0 20px 60px rgba(31, 36, 48, 0.08);
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(199, 164, 91, 0.45);
  opacity: 0.55;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 288px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.location-card,
.contact-panel {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(88, 174, 222, 0.16);
  box-shadow: var(--shadow);
}

.location-card {
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff, var(--blue-soft));
}

.location-badge {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(23, 90, 132, 0.24);
  flex: 0 0 auto;
}

.contact-panel {
  padding: clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 20px;
  border-radius: 20px;
  background: var(--blue-soft);
  border: 1px solid rgba(88, 174, 222, 0.16);
}

.contact-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-dark);
  margin-bottom: 5px;
}

.contact-item strong {
  font-size: 1.08rem;
}

.contact-button {
  grid-column: 1 / -1;
  justify-self: start;
}

.footer {
  padding: 40px 7%;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 1px solid rgba(199, 164, 91, 0.35);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .section-padding {
    padding: 72px 5%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding-top: 55px;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-actions,
  .contact-button {
    justify-content: center;
    justify-self: center;
  }

  .hero-text,
  .section-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .logo-frame {
    width: min(360px, 86vw);
  }

  .product-grid,
  .gallery-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .location-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .navbar {
    width: calc(100% - 22px);
    margin-top: 11px;
    border-radius: 24px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .section-padding {
    padding: 58px 18px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

  .gallery-item {
    min-height: 260px;
    padding: 12px;
  }

  .gallery-item img {
    min-height: 236px;
  }

  .location-badge {
    width: 122px;
    height: 122px;
  }
}
