/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: #0d0d0d;
  color: #f2ede5;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-bottom 0.3s;
  border-bottom: 0.5px solid transparent;
}

#navbar.scrolled {
  background: rgba(13,13,13,0.96);
  border-bottom: 0.5px solid rgba(192,39,45,0.25);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #f2ede5;
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,237,229,0.6);
  transition: color 0.2s;
}

.nav-links a:hover { color: #c0272d; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #f2ede5;
  font-size: 22px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #111;
  border-top: 0.5px solid rgba(192,39,45,0.2);
  list-style: none;
  padding: 16px 32px;
  gap: 16px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,237,229,0.7);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 120px 32px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(192,39,45,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-mon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(192,39,45,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  background: #0d0d0d;
}

.hero-mon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  /* Tint to red — works for black mon on white bg */
  filter: invert(1) sepia(1) saturate(3) hue-rotate(310deg) brightness(0.75);
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c0272d;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(52px, 8vw, 80px);
  letter-spacing: 0.06em;
  color: #f2ede5;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(242,237,229,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: rgba(242,237,229,0.2);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #c0272d;
  color: #f2ede5;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #a01f24; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 0.5px solid rgba(192,39,45,0.5);
  color: rgba(242,237,229,0.7);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: #c0272d; color: #f2ede5; }

/* ===== SECTIONS ===== */
.section { padding: 100px 32px; }

.section-dark { background: #111; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c0272d;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  color: #f2ede5;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 15px;
  color: rgba(242,237,229,0.55);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  color: #f2ede5;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 15px;
  color: rgba(242,237,229,0.65);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 0.5px solid rgba(192,39,45,0.4);
  color: rgba(192,39,45,0.9);
  border-radius: 2px;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 0.5px solid rgba(192,39,45,0.2);
  padding-left: 40px;
}

.about-stat {}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 48px;
  color: #c0272d;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,237,229,0.4);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: #0d0d0d;
  border: 0.5px solid rgba(192,39,45,0.15);
  border-top: 2px solid #c0272d;
  padding: 32px 28px;
  border-radius: 2px;
  position: relative;
  transition: border-color 0.2s;
}

.service-card:hover { border-color: rgba(192,39,45,0.4); }

.service-icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-delivery {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,237,229,0.35);
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: #f2ede5;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13.5px;
  color: rgba(242,237,229,0.55);
  line-height: 1.8;
}

.service-price {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  color: #c0272d;
}

.service-price span {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(242,237,229,0.35);
  margin-left: 4px;
}

.services-note {
  font-size: 12px;
  color: rgba(242,237,229,0.3);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 32px;
  font-style: italic;
}

.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(192,39,45,0.12);
  color: #c0272d;
  border-radius: 2px;
}

.services-cta { text-align: center; }

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.portfolio-card {
  border: 0.5px solid rgba(242,237,229,0.08);
  border-left: 2px solid rgba(192,39,45,0.5);
  padding: 28px 24px;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.portfolio-card:hover { border-color: rgba(192,39,45,0.6); }

.portfolio-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  color: #f2ede5;
  margin-bottom: 10px;
}

.portfolio-card p {
  font-size: 13.5px;
  color: rgba(242,237,229,0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-tech span {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(242,237,229,0.05);
  border: 0.5px solid rgba(242,237,229,0.1);
  border-radius: 2px;
  color: rgba(242,237,229,0.5);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 0.5px solid rgba(192,39,45,0.3);
  padding-left: 20px;
}

.contact-lbl {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c0272d;
}

.contact-item a, .contact-item span {
  font-size: 14px;
  color: rgba(242,237,229,0.7);
  transition: color 0.2s;
}

.contact-item a:hover { color: #f2ede5; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: #0d0d0d;
  border: 0.5px solid rgba(242,237,229,0.12);
  border-radius: 2px;
  padding: 12px 16px;
  color: #f2ede5;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(192,39,45,0.5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(242,237,229,0.25);
}

.form-note {
  font-size: 11px;
  color: rgba(242,237,229,0.25);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 0.5px solid rgba(192,39,45,0.15);
  padding: 28px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: rgba(242,237,229,0.6);
}

.footer-copy {
  font-size: 11px;
  color: rgba(242,237,229,0.25);
  letter-spacing: 0.08em;
}

.footer-li {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(192,39,45,0.7);
  transition: color 0.2s;
}

.footer-li:hover { color: #c0272d; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .about-grid { grid-template-columns: 1fr; }
  .about-aside {
    flex-direction: row;
    border-left: none;
    border-top: 0.5px solid rgba(192,39,45,0.2);
    padding-left: 0;
    padding-top: 32px;
    justify-content: space-around;
  }

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

  .footer-inner { flex-direction: column; text-align: center; }

  .section { padding: 72px 24px; }
}
