/* --- Variables --- */
:root {
  --color-bg: #f8f5f0;
  --color-bg-dark: #2c2520;
  --color-wood: #6b5344;
  --color-wood-light: #8b7355;
  --color-accent: #a67c52;
  --color-text: #2c2520;
  --color-text-muted: #5c5248;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --shadow: 0 4px 20px rgba(44, 37, 32, 0.08);
  --radius: 12px;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-wood); text-decoration: none; }
a:hover { color: var(--color-accent); }

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

/* --- Header & hero --- */
.header {
  min-height: 100vh;
  background: linear-gradient(165deg, #f8f5f0 0%, #ebe5dc 50%, #e0d6c8 100%);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h2v60H0V0zm4 0h2v60H4V0zm4 0h2v60H8V0z' fill='%236b5344' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-wood);
}
.logo span { font-weight: 400; color: var(--color-text-muted); }

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-wood);
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-wood);
}

.hero {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 8rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--color-bg-dark);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--color-wood);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--color-wood-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* --- Sections --- */
.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--color-bg-dark);
  text-align: center;
  margin: 0 0 0.5rem;
}

.section-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* --- Offer grid --- */
.section-offer { background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.offer-card {
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44, 37, 32, 0.12);
}

.offer-icon {
  display: block;
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-bg-dark);
}

.offer-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- Before / After --- */
.section-before-after { background: linear-gradient(180deg, #f0ebe3 0%, var(--color-bg) 100%); }
.section-top { padding-top: 1.5rem; }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .before-after { grid-template-columns: 1fr; }
}

.ba-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ba-image-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #e8e2d9;
  max-width: 480px;
}

.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  display: inline-block;
  margin: 1rem 1.25rem 0;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.ba-card p {
  margin: 0.5rem 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.ba-after .ba-label { color: var(--color-wood); }

/* --- Process --- */
.section-process .container { max-width: 640px; }

.process-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  counter-reset: step;
}

.process-list li {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--color-wood);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.process-list strong { color: var(--color-text); }

/* --- Contact --- */
.section-contact {
  background: var(--color-bg-dark);
  color: #e8e2d9;
}

.section-contact .section-title { color: #fff; }

.contact-text {
  text-align: center;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-block a {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 1.1rem;
}

.contact-block a:hover { color: #c9a574; }

/* --- Footer --- */
.footer {
  padding: 1.5rem;
  text-align: center;
  background: #1e1916;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer p { margin: 0; }

/* --- Mobile nav --- */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 0; right: 0;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 4rem 1.5rem 2rem;
    gap: 1rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 100;
  }
  .nav-list.is-open { transform: translateX(0); }
}
