@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,400&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Variables ── */
:root {
  --paper: #F4F0E8;
  --ink: #1C1C1C;
  --ink-light: #4A4A4A;
  --cyan: #0078D4;
  --magenta: #D4003C;
  --yellow: #F5C518;
  --rule: #D1C9B8;
  --paper-dark: #E8E2D6;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Newsreader', Georgia, serif;
  --max-w: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;
}

/* ── Base ── */
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { max-width: 620px; }

.label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(28,28,28,0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--magenta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--magenta);
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.5rem 1rem;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s;
}

.nav-wa:hover {
  background: var(--magenta);
}

.nav-wa svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.3s;
}

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

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-wa {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem !important;
  }
}

/* ── Hero ── */
.hero {
  padding-top: calc(60px + var(--space-xl));
  padding-bottom: var(--space-lg);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--ink);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero h1 .accent {
  color: var(--magenta);
  display: block;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--ink-light);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 6px solid var(--paper);
  box-shadow: 0 8px 30px rgba(28,28,28,0.12);
}

.hero-cmyk {
  position: absolute;
  top: -15px;
  right: -15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-cmyk span {
  display: block;
  width: 30px;
  height: 30px;
}

.cmyk-c { background: var(--cyan); }
.cmyk-m { background: var(--magenta); }
.cmyk-y { background: var(--yellow); }
.cmyk-k { background: var(--ink); }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .hero {
    min-height: auto;
    padding-top: calc(60px + var(--space-lg));
  }
  .hero-img-main {
    height: 350px;
  }
  .hero-img-accent {
    width: 140px;
    height: 140px;
    bottom: -20px;
    left: -10px;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--magenta);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-magenta {
  background: var(--magenta);
  color: #fff;
}

.btn-magenta:hover {
  background: #B00030;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ── Services ── */
.services {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-xl) 0;
}

.services .label {
  color: var(--rule);
}

.services h2 {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.services h2 .accent {
  color: var(--yellow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.service-card {
  background: var(--ink);
  padding: var(--space-md);
  position: relative;
  transition: background 0.3s;
}

.service-card:hover {
  background: #2A2A2A;
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
  text-transform: none;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 550px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Showcase strip ── */
.showcase {
  padding: var(--space-lg) 0;
  overflow: hidden;
}

.showcase-scroll {
  display: flex;
  gap: var(--space-sm);
}

.showcase-scroll img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.showcase-scroll img:hover {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .showcase-scroll img {
    width: 260px;
    height: 180px;
  }
}

/* ── Why us ── */
.why-us {
  padding: var(--space-xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
}

.why-left h2 {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
}

.why-left p {
  color: var(--ink-light);
  font-size: 1.05rem;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-item {
  padding-left: var(--space-md);
  border-left: 3px solid var(--rule);
  transition: border-color 0.3s;
}

.why-item:hover {
  border-color: var(--magenta);
}

.why-item h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.why-item p {
  color: var(--ink-light);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ── Reviews ── */
.reviews {
  background: var(--paper-dark);
  padding: var(--space-xl) 0;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.reviews-header h2 {
  margin-top: var(--space-xs);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.review-card {
  background: var(--paper);
  padding: var(--space-md);
  position: relative;
}

.review-quote {
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--magenta);
  line-height: 1;
  margin-bottom: var(--space-xs);
  opacity: 0.4;
}

.review-card blockquote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.review-author {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
}

.review-source {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--rule);
  font-style: italic;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Contact ── */
.contact {
  padding: var(--space-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-info h2 {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
}

.contact-detail {
  margin-bottom: var(--space-md);
}

.contact-detail .label {
  margin-bottom: 0.3rem;
}

.contact-detail p {
  font-size: 1rem;
  color: var(--ink-light);
}

.contact-detail a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s;
}

.contact-detail a:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.contact-hours-table {
  width: 100%;
  max-width: 360px;
  border-collapse: collapse;
}

.contact-hours-table td {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--rule);
}

.contact-hours-table td:first-child {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 120px;
}

.contact-hours-table td:last-child {
  color: var(--ink-light);
}

.contact-visual {
  position: relative;
}

.contact-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.contact-cta-box {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-md);
  margin-top: -40px;
  position: relative;
  z-index: 2;
  margin-left: var(--space-md);
  margin-right: var(--space-md);
}

.contact-cta-box p {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-cta-box {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── Footer ── */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-md) 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--magenta);
}

.footer-right {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-right a {
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--paper);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }
.fade-up.d3 { animation-delay: 0.3s; }
.fade-up.d4 { animation-delay: 0.4s; }
.fade-up.d5 { animation-delay: 0.5s; }
.fade-up.d6 { animation-delay: 0.6s; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── WhatsApp floating ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}
