@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --emerald: #2ecc71;
  --emerald-dark: #1a7a44;
  --emerald-dim: rgba(46,204,113,0.12);
  --canvas: #0f1410;
  --surface: #161d17;
  --surface-2: #1e2820;
  --text: #f0f4f1;
  --text-muted: #8a9e8d;
  --border: rgba(46,204,113,0.15);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,20,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav .logo img { height: 110px; width: auto; }

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

nav ul a:hover, nav ul a.active { color: var(--emerald); }

nav .nav-cta {
  background: var(--emerald);
  color: #0f1410;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

nav .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

@media (min-width: 901px) {
  nav .nav-cta { padding: 14px 44px; font-size: 16px; }
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5% 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(15,20,16,0.97) 38%, rgba(15,20,16,0.55) 100%),
    url('assets/kitchen.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46,204,113,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46,204,113,0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content, .quote-card { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-dim);
  border: 1px solid var(--border);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--emerald);
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--emerald);
  color: #0f1410;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}

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

.btn-secondary {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--emerald); }

/* QUOTE FORM CARD */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

.quote-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.quote-card .sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
}

.form-group select option { background: var(--surface-2); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-submit {
  width: 100%;
  background: var(--emerald);
  color: #0f1410;
  padding: 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s, opacity 0.2s;
}

.form-submit:hover { transform: translateY(-1px); opacity: 0.9; }

.form-bilingual {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* TRUST BAR */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--emerald-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* SECTIONS */
section {
  padding: 96px 5%;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* WHO WE SERVE */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.serve-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.serve-card:hover {
  border-color: var(--emerald);
  transform: translateY(-4px);
}

.serve-card-img {
  width: calc(100% + 64px);
  margin: -32px -32px 24px -32px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  display: block;
}

.serve-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.serve-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.serve-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* SERVICES */
.services-bg { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s;
}

.service-card:hover { border-color: var(--emerald); }

.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--emerald);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.4;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card .price {
  font-size: 13px;
  color: var(--emerald);
  font-weight: 600;
  margin-top: 10px;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
}

.why-list { list-style: none; margin-top: 36px; }

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.why-list li:last-child { border-bottom: none; }

.why-check {
  width: 24px;
  height: 24px;
  background: var(--emerald-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
  font-size: 13px;
  margin-top: 2px;
}

.why-list h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.why-list p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.why-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-row {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-row .stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--emerald);
}

.stat-row .stat-label { font-size: 13px; color: var(--text-muted); }

/* BILINGUAL */
.bilingual-strip {
  background: var(--emerald);
  padding: 64px 5%;
  text-align: center;
}

.bilingual-strip h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #0f1410;
  margin-bottom: 12px;
}

.bilingual-strip p { color: rgba(15,20,16,0.7); font-size: 17px; margin-bottom: 28px; }

.btn-dark {
  background: #0f1410;
  color: var(--emerald);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

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

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--emerald); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* PAGE HEADER */
.page-header {
  padding: 160px 5% 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,204,113,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

.page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-header p { font-size: 18px; color: var(--text-muted); max-width: 540px; }

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--emerald-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.contact-detail p, .contact-detail a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--emerald); }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

/* ABOUT */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.team-avatar {
  width: 64px;
  height: 64px;
  background: var(--emerald-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.team-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--emerald); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.team-card .phone { font-size: 14px; color: var(--text-muted); margin-top: 12px; }
.team-card .phone a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.team-card .phone a:hover { color: var(--emerald); }

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.value-card .icon { font-size: 28px; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* PAGE LOADER */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.45s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  height: 90px;
  width: auto;
  animation: loaderBreath 1.6s ease-in-out infinite;
}

@keyframes loaderBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.96); }
}

.loader-track {
  width: 100px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--emerald);
  border-radius: 2px;
  animation: loaderFill 0.55s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes loaderFill { to { width: 100%; } }

/* CUSTOM CURSOR */
.cursor-dot, .cursor-logo-follow { display: none; }

@media (hover: hover) and (pointer: fine) {
  .cursor-dot { display: none; }

  .cursor-logo-follow {
    display: block;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transition: opacity 1.4s ease;
    transform: translate(-50%, -50%);
  }

  .cursor-logo-follow.visible { opacity: 1; }

  .cursor-logo-follow img {
    height: 80px;
    width: auto;
    display: block;
    filter:
      brightness(2.2)
      drop-shadow(0 0 6px rgba(255,255,255,0.9))
      drop-shadow(0 0 14px rgba(255,255,255,0.5));
  }
}

/* STICKY BOTTOM BAR */
.sticky-cta-bar {
  display: none;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

.sticky-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-logo { height: 36px; width: auto; }

.sticky-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.sticky-cta-btn {
  background: var(--emerald);
  color: #0f1410;
  padding: 11px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.sticky-cta-btn:hover { transform: translateY(-1px); opacity: 0.9; }


@media (max-width: 600px) {
  .sticky-left { gap: 10px; }
  .sticky-tagline { display: none; }
  .sticky-logo { height: 28px; }
  .sticky-cta-btn { padding: 10px 18px; font-size: 13px; }
}

/* TESTIMONIALS */
.testimonials-outer {
  position: relative;
  max-height: 660px;
  overflow: hidden;
  margin-top: 56px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
}

.testimonials-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.testimonials-col { flex: 1; min-width: 0; }

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: testimonialScroll 18s linear infinite;
}

.testimonials-col:hover .testimonials-track { animation-play-state: paused; }

@keyframes testimonialScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: var(--emerald); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-star { color: var(--emerald); font-size: 13px; }

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--emerald-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.testimonial-role { font-size: 12px; color: var(--text-muted); }

@media (max-width: 900px) {
  .testimonials-col:nth-child(2),
  .testimonials-col:nth-child(3) { display: none; }
  .testimonials-outer { max-height: 520px; }
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 5% 60px; }
  .hero p { max-width: 100%; }
  .serve-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { order: -1; }
  .contact-info { order: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .nav-mobile-toggle { display: flex; }
  nav .logo img { height: 75px; }
  .trust-bar { gap: 24px; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
