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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: #fff;
  z-index: 100;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.6; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: fixed;
  right: 24px;
  top: 28px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.mobile-overlay.active { display: flex; }

.mobile-overlay a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  margin-top: 120px;
  padding: 240px 0 80px;
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  width: 534px;
  height: 525px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.hero-blob--purple {
  background: radial-gradient(circle, rgba(208, 188, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
  left: 15%;
  top: 20px;
  animation: blob-drift 14s ease-in-out infinite;
}

.hero-blob--green {
  background: radial-gradient(circle, rgba(188, 255, 216, 1) 0%, rgba(255, 255, 255, 0) 70%);
  left: 30%;
  top: 60px;
  animation: blob-drift 14s ease-in-out infinite;
}

.hero-blob--orange {
  background: radial-gradient(circle, rgba(255, 229, 188, 1) 0%, rgba(255, 255, 255, 0) 70%);
  left: 45%;
  top: -10px;
  animation: blob-drift 14s ease-in-out infinite;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(180px, -15px); }
  50% { transform: translate(350px, 10px); }
  75% { transform: translate(180px, -10px); }
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 56px;
}

.hero-heading {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 24px;
}

.hero-stagger {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.8s ease-out forwards;
}

@keyframes hero-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
}

.hero-meta-logo {
  width: 24px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.scroll-arrow {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  cursor: pointer;
}

.scroll-arrow-img {
  width: 32px;
  height: 32px;
  opacity: 0.65;
  animation: arrow-bob 2s ease-in-out infinite;
}

.scroll-arrow:hover .scroll-arrow-img { animation-play-state: paused; transform: translateY(4px); }

@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── SECTION SHARED ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.section-label-text {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.54);
  white-space: nowrap;
}

.section-label-line {
  width: 400px;
  max-width: calc(100% - 24px);
  flex-shrink: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

/* ── EXAMPLE WORKS ── */
.works { padding-top: 160px; }

.works-list {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.work-item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.work-item--reverse { flex-direction: row-reverse; }

.work-text {
  flex: 1;
  display: flex;
  gap: 24px;
}

.work-number {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.26);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.work-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.work-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 769px) {
  .work-details {
    min-width: 320px;
  }
}

.work-title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
}

.work-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.65);
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  transition: opacity 0.2s;
}

.work-link:hover { opacity: 0.6; }

.work-link svg {
  width: 16px;
  height: 16px;
}

.work-image {
  flex: 0 0 auto;
  max-width: 375px;
}

.work-image--lg { max-width: 400px; }
.work-image--xl { max-width: 576px; }

.work-image img {
  width: 100%;
  max-height: 667px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.work-image:hover img {
  transform: translateY(-4px);
}

/* ── WHAT THEY SAY ── */
.testimonials {
  padding-top: 160px;
  padding-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.testimonial-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card--wash {
  background: #FAFAFA;
  border-radius: 24px 0px 24px 24px;
}

.testimonial-card--wash-right {
  background: #FAFAFA;
  border-radius: 0px 24px 24px 24px;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
}

.testimonial-text strong {
  font-weight: 700;
}

.testimonial-author {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
}

/* ── CTA ── */
.cta {
  margin-top: 80px;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  width: 534px;
  height: 525px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
}

.cta-blob--green {
  background: radial-gradient(circle, rgba(188, 255, 216, 1) 0%, rgba(255, 255, 255, 0) 70%);
  left: 25%;
  top: -50px;
}

.cta-blob--orange {
  background: radial-gradient(circle, rgba(255, 229, 188, 1) 0%, rgba(255, 255, 255, 0) 70%);
  left: 35%;
  top: -100px;
}

.cta-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 56px;
}

.cta-heading {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 24px;
}

.cta-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #333;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.87);
  text-decoration: none;
  transition: background 0.2s;
}

.cta-button:hover { background: rgba(51, 51, 51, 0.85); }

.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cta-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.26);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  transition: background 0.2s;
}

.cta-button-outline:hover { background: rgba(0, 0, 0, 0.08); }

/* ── FOOTER ── */
.footer {
  height: 120px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.87);
}

.footer-meta svg {
  width: 14px;
  height: 14px;
}

.footer-meta-sep {
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.87);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 0.6; }

/* ── RESPONSIVE: TABLET (481px–768px) ── */
@media (max-width: 768px) {
  .nav { height: 80px; padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { margin-top: 80px; padding: 240px 0 80px; }
  .hero-heading { font-size: 32px; }
  .hero-meta-logo { width: 16px; height: 12px; }
  .hero-content { padding: 0 24px; }
  .hero-blob { width: 300px; height: 300px; }

  .section-container { padding: 0 24px; }
  .section-label { margin-bottom: 80px; }
  .section-label-text { font-size: 18px; }
  .cta-content { padding: 0 24px; }

  .work-item,
  .work-item--reverse { flex-direction: column; align-items: center; }
  .work-item { gap: 40px; }
  .work-image { width: 100%; display: flex; justify-content: center; }
  .work-number { font-size: 48px; }
  .work-title { font-size: 24px; }
  .works { padding-top: 120px; }
  .works-list { gap: 80px; }

  .testimonials { padding-top: 120px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px; }

  .cta-heading { font-size: 28px; }
  .cta-button { padding: 12px; }
  .cta-button-outline { padding: 12px; }

  .footer {
    height: auto;
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
    align-items: flex-start;
  }

  .footer-links { flex-wrap: wrap; gap: 24px; }
}

/* ── RESPONSIVE: MOBILE (<480px) ── */
@media (max-width: 480px) {
  .hero-heading { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }

  .section-label { margin-bottom: 56px; }
  .section-label-text { font-size: 16px; }

  .work-text { gap: 16px; }
  .work-number { font-size: 36px; }
  .work-image--sm { max-width: 300px; }
  .work-title { font-size: 20px; }
  .work-description { font-size: 16px; }
  .work-link { font-size: 14px; }
  .works-list { gap: 60px; }

  .testimonial-text { font-size: 16px; }
  .testimonial-author { font-size: 14px; }

  .nav-links a { font-size: 14px; }
  .footer-name { font-size: 16px; }
  .footer-links a { font-size: 14px; }

  .cta { margin-top: 80px; padding: 80px 0; }
  .cta-heading { font-size: 24px; }
  .cta-subtext { font-size: 16px; }
  .cta-button { padding: 12px; }
  .cta-button-outline { padding: 12px; }
}

/* ── FADE-IN ANIMATIONS ── */
body.visited .fade-section,
body.visited .testimonial-card,
body.visited .work-item,
body.visited .hero-stagger {
  opacity: 1;
  transform: none;
  animation: none;
  transition: none;
}

body.visited {
  animation: page-fade-in 0.6s ease-out both;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-section {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.work-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.work-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
