:root {
  --bg: #fffaf2;
  --surface: #ffffff;
  --surface-2: #eefaf7;
  --text: #263238;
  --muted: #637477;
  --primary: #51b8a4;
  --primary-dark: #248d7b;
  --accent: #f57f6c;
  --accent-soft: #ffe4de;
  --line: rgba(38, 50, 56, 0.12);
  --shadow: 0 24px 60px rgba(38, 50, 56, 0.15);
  --radius: 26px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 250, 242, 0.86);
  border-bottom: 1px solid rgba(38, 50, 56, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Baloo 2", cursive;
  line-height: 1;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--surface);
  box-shadow: 0 10px 28px rgba(38, 50, 56, 0.12);
  background: var(--surface);
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 1.35rem;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}

.nav-menu a:not(.btn) {
  color: var(--text);
  opacity: 0.78;
}

.nav-menu a:not(.btn):hover {
  color: var(--primary-dark);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(38, 50, 56, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 32px rgba(36, 141, 123, 0.25);
}

.btn-secondary {
  color: var(--primary-dark);
  background: var(--surface);
  border-color: rgba(81, 184, 164, 0.3);
  box-shadow: 0 12px 30px rgba(38, 50, 56, 0.1);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.88) 43%, rgba(255, 250, 242, 0.22) 100%),
    url("../assets/gigi-tobi-sumedang.png") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 15% 28%, rgba(245, 127, 108, 0.22), transparent 28%),
    radial-gradient(circle at 68% 18%, rgba(81, 184, 164, 0.18), transparent 22%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1,
h2 {
  font-family: "Baloo 2", cursive;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 9vw, 7.6rem);
  color: var(--primary-dark);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-text {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 620px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 40px rgba(38, 50, 56, 0.08);
}

.hero-note p {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 94px;
  height: 94px;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 20px;
  box-shadow: 0 18px 36px rgba(38, 50, 56, 0.12);
}

.hero-card p {
  color: var(--muted);
}

.hero-card a {
  color: var(--primary-dark);
  font-weight: 900;
}

.section {
  padding: 96px 0;
}

.intro {
  padding-top: 72px;
  padding-bottom: 56px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-item {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(38, 50, 56, 0.08);
  border: 1px solid rgba(38, 50, 56, 0.07);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--accent-soft);
  font-size: 1.55rem;
}

.intro-item p,
.service-card p,
.about-copy p,
.section-heading p,
.contact-copy p,
.footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(38, 50, 56, 0.07);
  box-shadow: 0 18px 50px rgba(38, 50, 56, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(38, 50, 56, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 22px;
  background: var(--surface-2);
  font-size: 1.7rem;
}

.about {
  background: linear-gradient(180deg, transparent 0%, #eefaf7 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.about-image {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-copy p {
  margin-top: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-dark);
  font-weight: 900;
}

.location {
  background: #eefaf7;
}

.location-card {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-embed {
  min-height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.location-info {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info p {
  color: var(--muted);
  margin: 14px 0 24px;
}

.contact {
  background:
    radial-gradient(circle at top left, rgba(245, 127, 108, 0.16), transparent 34%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 32px;
  align-items: center;
}

.contact-card {
  padding: 32px;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(38, 50, 56, 0.07);
}

.muted {
  color: var(--muted);
}

.contact-row {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-row strong {
  font-size: 1rem;
}

.footer {
  color: white;
  background: #203838;
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  gap: 34px;
}

.footer .brand strong {
  color: white;
}

.footer .brand small,
.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  margin-bottom: 16px;
}

.footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 42px rgba(36, 141, 123, 0.32);
  font-size: 1.45rem;
}

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

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

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

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.24s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 12px 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.84) 52%, rgba(255, 250, 242, 0.65) 100%),
      url("../assets/gigi-tobi-sumedang.png") center / cover no-repeat;
  }

  .hero-content,
  .about-grid,
  .contact-grid,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 420px;
  }

  .intro-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 380px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.7rem);
  }

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

  .hero-note {
    padding: 14px;
  }

  .section {
    padding: 70px 0;
  }

  .intro {
    padding-top: 46px;
  }

  .service-card,
  .intro-item,
  .contact-card,
  .location-info {
    padding: 24px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 320px;
  }

  .floating-wa {
    right: 16px;
    bottom: 16px;
  }
}
