:root {
  --bg: #fffdf8;
  --surface: #ffffff;
  --surface-soft: #fff7ea;
  --surface-alt: #f5fbff;
  --text: #16344b;
  --muted: #64798d;
  --primary: #1bbcff;
  --secondary: #ff9548;
  --accent: #ffd447;
  --accent-soft: #fff0b9;
  --lime: #8be06d;
  --shadow: 0 22px 45px rgba(36, 88, 138, 0.12);
  --border: rgba(27, 85, 131, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 212, 71, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(27, 188, 255, 0.18), transparent 22%),
    radial-gradient(circle at bottom center, rgba(255, 149, 72, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffefc 55%, #f7fbff 100%);
  min-height: 100vh;
}

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

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

.page-shell {
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.25rem 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #ea8b00;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(27, 85, 131, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(27, 188, 255, 0.2);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #0b3855;
  background: linear-gradient(135deg, var(--accent), #fff4a8 42%, #8de0ff);
  box-shadow: 0 16px 32px rgba(27, 188, 255, 0.2);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--border);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats div {
  min-width: 150px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-photo,
.floating-card,
.category-card,
.photo-card,
.service-card,
.mini-card,
.cta-box {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
}

.hero-photo img,
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  top: 2.4rem;
  left: 0;
  width: min(100%, 420px);
  height: 430px;
}

.hero-photo-small {
  width: 210px;
  height: 210px;
}

.top-photo {
  top: 0;
  right: 0;
}

.bottom-photo {
  right: 1.2rem;
  bottom: 1rem;
}

.floating-card {
  position: absolute;
  left: 1.8rem;
  bottom: 1.5rem;
  max-width: 320px;
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.card-badge {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--lime);
  color: #6f4b00;
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.floating-card p {
  color: var(--muted);
  line-height: 1.6;
}

.trust-bar {
  padding: 0.7rem 0;
  background: rgba(255, 245, 219, 0.75);
  border-top: 1px solid rgba(27, 85, 131, 0.06);
  border-bottom: 1px solid rgba(27, 85, 131, 0.06);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 2rem;
  color: #5a738a;
  font-weight: 700;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.featured-copy h2,
.about-grid h2,
.cta-box h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

.section-heading p,
.featured-copy p,
.about-grid p,
.cta-box p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.category-card,
.service-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-card:hover,
.service-card:hover,
.photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 188, 255, 0.24);
}

.category-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #6f4b00;
  font-weight: 800;
}

.category-card h3,
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.category-card p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.photo-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.photo-card img {
  height: 320px;
}

.photo-card-large img {
  min-height: 320px;
  height: 100%;
}

.photo-card-large {
  grid-column: span 2;
}

.photo-copy {
  padding: 1.2rem 1.25rem 1.35rem;
}

.photo-copy span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #ea8b00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-copy h3 {
  font-size: 1.08rem;
  line-height: 1.45;
}

.featured-grid,
.about-grid,
.cta-box {
  display: grid;
  gap: 2rem;
}

.featured-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.featured-panel {
  display: grid;
  gap: 1rem;
}

.mini-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: #fff;
}

.mini-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: #ea8b00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-card strong {
  font-size: 1.15rem;
  line-height: 1.5;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(27, 188, 255, 0.12), rgba(255, 212, 71, 0.24));
}

.about-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.cta-box {
  grid-template-columns: 1.4fr auto;
  align-items: center;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 240, 185, 0.92), rgba(216, 243, 255, 0.96));
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .featured-grid,
  .about-grid,
  .cta-box,
  .gallery-grid,
  .category-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .hero-photo,
  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
  }

  .hero-photo-main,
  .hero-photo-small {
    height: 280px;
  }

  .photo-card-large {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.6rem);
  }

  .hero-copy p,
  .section-heading p,
  .featured-copy p,
  .about-grid p,
  .cta-box p {
    font-size: 1rem;
  }

  .btn,
  .hero-stats div {
    width: 100%;
  }

  .hero-stats {
    display: grid;
  }

  .photo-card img,
  .photo-card-large img {
    height: 260px;
  }

  .cta-box {
    padding: 1.6rem;
  }
}
