/* Krusin Kombis — Stylesheet */

:root {
  --cream:     #f8f3ec;
  --brown:     #3d2b1f;
  --brown-mid: #5c3d2e;
  --rust:      #c0622c;
  --rust-dark: #9a4a1f;
  --green:     #4a7c59;
  --text:      #2a1f1a;
  --text-mid:  #6b5244;
  --white:     #ffffff;
  --dark:      #1e1410;
  --radius:    8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Georgia', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--rust); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn-primary, .btn-secondary, .btn-outline, .btn-contact {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-primary  { background: var(--rust); color: var(--white); border: 2px solid var(--rust); }
.btn-primary:hover { background: var(--rust-dark); border-color: var(--rust-dark); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); text-decoration: none; }
.btn-outline { background: transparent; color: var(--cream); border: 2px solid var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--dark); text-decoration: none; }
.btn-contact  { background: var(--rust); color: var(--white); padding: 10px 20px; font-size: 0.9rem; }
.full-width   { width: 100%; text-align: center; border: none; }

/* ── Header ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(30, 20, 16, 0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.2s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo { font-size: 1.5rem; font-weight: bold; text-decoration: none; }
.logo-krusin { color: var(--cream); }
.logo-kombis { color: var(--rust); }

.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { color: var(--cream); font-size: 0.95rem; text-decoration: none; font-family: sans-serif; transition: color 0.2s; }
.main-nav a:hover { color: var(--rust); }

.hamburger { display: none; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; }

.mobile-nav { display: none; flex-direction: column; padding: 12px 24px 16px; gap: 12px; background: var(--dark); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--cream); font-size: 1rem; text-decoration: none; font-family: sans-serif; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #2d1a0e 0%, #4a2e1a 50%, #1e3a2a 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content { position: relative; max-width: 800px; padding: 40px 0; }
.hero-tag { font-family: sans-serif; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rust); margin-bottom: 16px; }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub { color: rgba(248,243,236,0.85); font-size: 1.2rem; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Trust Bar ── */
.trust-bar { background: var(--rust); padding: 18px 0; }
.trust-inner {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  font-family: sans-serif; font-size: 0.9rem;
}
.trust-item { color: var(--white); display: flex; align-items: center; gap: 8px; }
.trust-item span { font-weight: 600; }

/* ── Sections ── */
.section { padding: 80px 0; }
.bg-dark  { background: var(--dark); }
.bg-cream { background: var(--cream); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }
.section-header.light h2 { color: var(--cream); }
.section-header.light p  { color: rgba(248,243,236,0.75); }

/* ── Service Grid ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border-top: 3px solid var(--rust);
}
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { margin-bottom: 10px; color: var(--brown); }
.service-card p  { color: var(--text-mid); font-size: 0.95rem; margin: 0; }

.hire-cta { text-align: center; }
.hire-cta p { margin-bottom: 16px; color: var(--text-mid); font-style: italic; }

/* ── Restorations ── */
.restore-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.restore-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid var(--rust);
}
.restore-item h3 { color: var(--cream); margin-bottom: 8px; }
.restore-item p  { color: rgba(248,243,236,0.7); font-size: 0.95rem; margin: 0; }
.restore-note { text-align: center; }
.restore-note p { color: rgba(248,243,236,0.75); margin-bottom: 20px; }

/* ── Sales ── */
.sales-note { text-align: center; max-width: 600px; margin: 0 auto; }
.sales-note p { color: var(--text-mid); margin-bottom: 20px; font-size: 1.05rem; }

/* ── Why Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.why-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(60,30,10,0.08);
}
.why-item h3 { color: var(--brown); margin-bottom: 10px; }
.why-item p  { color: var(--text-mid); font-size: 0.95rem; margin: 0; }

/* ── Contact ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item strong { color: var(--cream); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-family: sans-serif; }
.contact-item span, .contact-item a { color: rgba(248,243,236,0.8); }
.contact-item a:hover { color: var(--rust); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(248,243,236,0.4); }
.contact-form select option { background: var(--dark); }
.contact-form textarea { resize: vertical; }

/* ── Footer ── */
footer {
  background: #0f0a07;
  padding: 40px 0 24px;
  text-align: center;
  color: rgba(248,243,236,0.5);
  font-family: sans-serif;
  font-size: 0.85rem;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-brand p { margin: 4px 0 0; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(248,243,236,0.6); text-decoration: none; }
.footer-links a:hover { color: var(--rust); }
.footer-copy { color: rgba(248,243,236,0.3); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .trust-inner { gap: 16px; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  h1 { font-size: 1.8rem; }
}
