@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600&display=swap");

:root {
  --bg: #f4f2ee;
  --ink: #1e2a32;
  --accent-clay: #8c7a6b;
  --accent-teal: #6f8f8b;
  --divider: #d8d4cf;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}
/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* ACTIVE NAV LINK */
.nav-links a.active {
  color: var(--accent-clay);
}

.nav-links a.active::after {
  width: 100%;
  background: var(--accent-clay);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  transition:
    padding 0.3s ease,
    background 0.3s ease;
  width: 100%;
  padding: 22px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244, 242, 238, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
  z-index: 100;
}
.navbar.shrink {
  padding: 14px 70px;
  background: rgba(244, 242, 238, 0.95);
}
.nav-brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 30px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* HERO */
.hero {
  padding: 160px 70px 100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  line-height: 1.15;
}

.hero-text h1 span {
  color: var(--accent-clay);
}

.hero-text p {
  margin-top: 28px;
  max-width: 620px;
  line-height: 1.75;
  color: #4b5560;
}

.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stats strong {
  font-size: 0.9rem;
}

.hero-stats span {
  font-size: 0.75rem;
  color: var(--accent-teal);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-box {
  width: 260px;
  height: 260px;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 4rem;
  color: var(--accent-teal);
  background: #ffffff80;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar {
    padding: 20px 30px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 140px 30px 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
}
/* COLORFUL CONTROLLER */
.controller-pro {
  width: 460px;
  max-width: 100%;
  animation: floatController 6s ease-in-out infinite;
}

/* Glow */
.pad-glow {
  fill: var(--divider);
  opacity: 0.35;
}

/* Body */
.pad-body {
  fill: #2f3e46;
}

/* Grips */
.grip-left {
  fill: #84a59d;
}

.grip-right {
  fill: #f28482;
}

/* Sticks */
.stick {
  fill: #cad2c5;
  opacity: 0.4;
}

.stick-inner {
  fill: #52796f;
}

/* D-Pad */
.dpad {
  fill: #b7b7a4;
}

/* Buttons */
.btn {
  animation: buttonPulse 2.8s infinite ease-in-out;
}

.btn.yellow {
  fill: #f6bd60;
}
.btn.blue {
  fill: #5fa8d3;
  animation-delay: 0.2s;
}
.btn.green {
  fill: #84c69b;
  animation-delay: 0.4s;
}
.btn.red {
  fill: #e56b6f;
  animation-delay: 0.6s;
}

/* Animations */
@keyframes floatController {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .controller-pro {
    width: 320px;
  }
}

/* SERVICES SECTION */
.services {
  padding: 120px 70px;
  background: #ffffff;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-head {
  max-width: 700px;
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-teal);
}

.services-head h2 {
  margin-top: 18px;
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  line-height: 1.25;
}

/* SERVICES LIST */
.services-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider);
}

.service-index {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  color: var(--accent-clay);
}

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.service-content p {
  margin-top: 14px;
  max-width: 620px;
  line-height: 1.75;
  color: #4b5560;
}

/* HOVER (SUBTLE) */
.service-item:hover .service-index {
  color: var(--accent-teal);
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services {
    padding: 90px 30px;
  }

  .services-head h2 {
    font-size: 2rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-index {
    font-size: 1.6rem;
  }
}
/* WHY CHOOSE US */
.why-us {
  padding: 120px 70px;
  background: var(--bg);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-head {
  max-width: 700px;
}

.why-head h2 {
  margin-top: 18px;
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  line-height: 1.25;
}

/* GRID */
.why-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

.why-point h3 {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-left: 22px;
}

.why-point h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent-clay);
  border-radius: 50%;
}

.why-point p {
  margin-top: 14px;
  max-width: 480px;
  line-height: 1.75;
  color: #4b5560;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-us {
    padding: 90px 30px;
  }

  .why-head h2 {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ABOUT SECTION */
.about {
  padding: 120px 70px;
  background: #ffffff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-head {
  max-width: 700px;
}

.about-head h2 {
  margin-top: 18px;
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  line-height: 1.25;
}

/* CONTENT */
.about-content {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.about-text p {
  margin-bottom: 22px;
  max-width: 620px;
  line-height: 1.75;
  color: #4b5560;
}

/* PROCESS */
.about-process {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 40px;
  border-left: 1px solid var(--divider);
}

.process-step {
  display: flex;
  align-items: center;
  gap: 18px;
}

.process-step span {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--accent-clay);
  min-width: 32px;
}

.process-step p {
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about {
    padding: 90px 30px;
  }

  .about-head h2 {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-process {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--divider);
    padding-top: 30px;
  }
}
/* CONTACT SECTION */
.contact {
  padding: 120px 70px;
  background: var(--bg);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-head {
  max-width: 700px;
}

.contact-head h2 {
  margin-top: 18px;
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  line-height: 1.25;
}

/* CONTENT */
.contact-content {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

/* INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.info-block {
  max-width: 520px;
}

.info-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-teal);
}

.info-block p {
  margin-top: 10px;
  line-height: 1.7;
  color: #4b5560;
}

.info-block a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--divider);
}

/* NOTE */
.contact-note {
  border-left: 1px solid var(--divider);
  padding-left: 40px;
}

.contact-note p {
  line-height: 1.8;
  color: #4b5560;
  max-width: 420px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact {
    padding: 90px 30px;
  }

  .contact-head h2 {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-note {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--divider);
    padding-top: 30px;
  }
}
/* FOOTER */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--divider);
  padding: 60px 70px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

/* LEFT */
.footer-brand {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-left p {
  margin-top: 14px;
  max-width: 420px;
  line-height: 1.7;
  font-size: 0.85rem;
  color: #4b5560;
}

/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--ink);
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-legal {
  margin-top: 40px;
  font-size: 0.75rem;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer {
    padding: 50px 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-right {
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
