/* ── Variables ── */
:root {
  --bg:        #101014;
  --surface:   #1a1a1a;
  --border:    #2a2a2a;
  --accent:    #da4242;
  --accent2:   #c47a3a;
  --text:      #f0ede6;
  --muted:     #888;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max:       1100px;
  --radius:    6px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Nav ── */
/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

@media (max-width: 540px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 0.75rem 1.25rem;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
}


/* ── Page wrapper ── */
.page { max-width: var(--max); margin: 0 auto; padding: 4rem 2rem; }

/* ── Hero (index) ── */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #0f0f0f;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; color: #0f0f0f; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  margin-left: 1rem;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Section headings ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ── Cards grid ── */



/* hover effect */
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 80, 80, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}


.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  
  height: 250px;
}



.card p {
  color: var(--muted);
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}


a.card {
  position: relative;
  padding-bottom: 3rem;
}
a.card::after {
  content: ' See more→';
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  color: var(--border);
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
}
a.card:hover::after {
  color: var(--accent);
  transform: translateX(4px);
}

a.card h3 {
  color: var(--text);
}

a.card p {
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
 color: var(--muted); font-size: 0.95rem;
}

a.card:hover {
  text-decoration: none;
}

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

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.stat-row { display: flex; gap: 3rem; margin-top: 2rem; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-align: center;
}

@media (max-width: 600px) {
  .services-stats {
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: center;
    padding: 1.25rem 1rem;
  }
}

.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

/* ── Services page ── */

.services-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; }
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
}
.service-item:hover { text-decoration: none; color: var(--text); }
.service-item:hover { padding-left: 1rem; }
.service-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--border);
}
.service-item:hover .service-num { color: var(--accent); }
.service-name { font-size: 1.2rem; font-weight: 500; }
.service-desc { color: var(--muted); font-size: 0.9rem; margin-top: 0.25rem; }
.service-price { color: var(--accent); font-weight: 600; white-space: nowrap; }





/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info p { color: var(--muted); margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-item span:first-child { font-size: 1.2rem; }
.contact-detail-item strong { display: block; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

form { display: flex; flex-direction: column; gap: 1.25rem; }
label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); display: block; margin-bottom: 0.4rem; }
input, textarea, select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-item { grid-template-columns: 50px 1fr; }
  .service-price { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { gap: 1.5rem; }
  nav { padding: 0 1rem; }
  .nav-links { gap: 1rem; }
}
