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

:root {
  --black:   #080808;
  --surface: #111111;
  --card:    #161616;
  --border:  #1e1e1e;
  --border2: #2a2a2a;
  --white:   #ffffff;
  --muted:   #888888;
  --dim:     #555555;
  --red:     #C8231A;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: all 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.nav-logo-ring:hover { border-color: var(--red); }

.nav-logo-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
}

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-text span:first-child { color: var(--white); font-size: 15px; font-weight: 500; letter-spacing: 0.5px; }
.nav-brand-text span:last-child { color: var(--muted); font-size: 10px; letter-spacing: 3px; font-weight: 300; }

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.3s !important;
}

.nav-cta:hover { opacity: 0.85; }
.nav-cta::after { display: none !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 68px 60px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, var(--black) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(200,35,26,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-tag-line { width: 36px; height: 1px; background: var(--red); }
.hero-tag span { color: var(--muted); font-size: 11px; letter-spacing: 3px; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-sub {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 4px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  border: 0.5px solid var(--border2);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: border-color 0.3s;
}

.btn-outline:hover { border-color: var(--white); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 0.5px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--serif); font-size: 28px; color: var(--white); }
.hero-stat-label { color: var(--dim); font-size: 10px; letter-spacing: 3px; margin-top: 4px; }
.hero-stat-divider { width: 0.5px; background: var(--border); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero-scroll span { color: var(--dim); font-size: 9px; letter-spacing: 3px; }

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ─── SECTIONS COMMON ─── */
section { padding: 100px 60px; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-title { font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--white); }
.section-tag { color: var(--dim); font-size: 10px; letter-spacing: 3px; }
.section-line { width: 40px; height: 1px; background: var(--red); opacity: 0.6; }

/* ─── SERVICES ─── */
.services {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.services-label {
  text-align: center;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.service-card {
  background: var(--card);
  padding: 36px 30px;
  position: relative;
  transition: background 0.3s;
}

.service-card:hover { background: #1c1c1c; }

.service-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-num {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--border2);
  font-family: var(--serif);
  font-size: 18px;
}

.service-card h3 { color: var(--white); font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.service-underline {
  width: 20px; height: 1px;
  background: var(--red);
  opacity: 0.5;
  margin-top: 20px;
}

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--black); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 5px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--card);
  border: 0.5px solid var(--border);
  cursor: pointer;
}

.portfolio-item:first-child { grid-row: span 2; }

.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-info {
  position: absolute;
  bottom: 14px; left: 14px;
}

.portfolio-info-line { width: 12px; height: 1px; background: var(--red); margin-bottom: 6px; }
.portfolio-info-cat { color: var(--muted); font-size: 9px; letter-spacing: 2px; }
.portfolio-info-name { color: var(--white); font-family: var(--serif); font-size: 14px; margin-top: 2px; }

.portfolio-more {
  background: rgba(200,35,26,0.12) !important;
  border: 0.5px solid var(--red) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s !important;
}

.portfolio-more:hover { background: rgba(200,35,26,0.22) !important; }
.portfolio-more span { color: var(--red); font-size: 13px; font-weight: 500; letter-spacing: 1px; }

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

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

.testimonial-card {
  background: var(--card);
  border-left: 2px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 24px 22px;
  transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateX(4px); }
.testimonial-card p { color: var(--white); font-family: var(--serif); font-size: 14px; line-height: 1.8; font-style: italic; margin-bottom: 14px; }
.testimonial-author { color: var(--dim); font-size: 11px; letter-spacing: 1px; }

/* ─── BOOKING ─── */
.booking { background: var(--black); }

.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.booking-left h2 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin-bottom: 8px; }
.booking-left p { color: var(--muted); font-size: 13px; margin-bottom: 28px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 0.5px solid var(--border2);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }

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

.form-group select { color: var(--dim); cursor: pointer; }
.form-group select option { background: var(--card); }
.form-group textarea { resize: none; height: 100px; }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 13px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.3s;
}

.btn-submit:hover { opacity: 0.85; }

.booking-right { padding-top: 20px; }
.contact-label { color: var(--dim); font-size: 10px; letter-spacing: 3px; margin-bottom: 20px; }

.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.contact-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.8;
}

.contact-item span { color: var(--white); font-size: 14px; }
.contact-divider { height: 0.5px; background: var(--border); margin: 28px 0; }
.social-label { color: var(--dim); font-size: 10px; letter-spacing: 3px; margin-bottom: 14px; }
.social-links { display: flex; gap: 8px; }

.social-link {
  border: 0.5px solid var(--border2);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 3px;
  letter-spacing: 1px;
  transition: border-color 0.3s, color 0.3s;
}

.social-link:hover { border-color: var(--red); color: var(--red); }

/* ─── FOOTER ─── */
footer {
  background: #050505;
  border-top: 0.5px solid var(--border);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.footer-brand span { color: var(--dim); font-size: 12px; }
.footer-copy { color: #333; font-size: 11px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--dim); font-size: 11px; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  section { padding: 70px 24px; }
  footer { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding: 68px 24px 0; }
  .hero-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio-item:first-child { grid-row: span 1; grid-column: span 2; height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── BOOKING LABEL ─── */
.booking-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.booking-label-line {
  width: 18px; height: 1px;
  background: var(--red);
  opacity: 0.6;
}
.booking-label span {
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 3px;
}

/* ─── FORM ROW (side by side on desktop) ─── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ─── SERVICES GRID — 4 cards ─── */
.services-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 80px 32px; }
  footer { padding: 20px 32px; }

  .hero { padding: 68px 32px 0; }
  .hero h1 { font-size: 42px; }
  .hero-stats { gap: 32px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 220px 160px;
  }

  .booking-grid { gap: 40px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 60px;
  }

  .nav-brand-text span:last-child { display: none; }

  .nav-links {
    gap: 16px;
  }

  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3) {
    display: none;
  }

  section { padding: 60px 20px; }
  footer {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Hero */
  .hero { padding: 60px 20px 0; text-align: center; }
  .hero h1 { font-size: 32px; }
  .hero-tag { justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 28px;
    margin-top: 48px;
  }
  .hero-stat-divider { display: none; }
  .hero-scroll { display: none; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1px;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 120px 120px;
  }
  .portfolio-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 200px;
  }

  /* Section header */
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-left h2 { font-size: 28px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 9px; letter-spacing: 2px; }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .portfolio-item { height: 160px; }
  .portfolio-item:first-child {
    grid-column: span 1;
    height: 200px;
  }

  .nav-cta { padding: 7px 14px; font-size: 11px !important; }
}
