:root {
  --cream: #e9e5d8;
  --cream-light: #f5f3ec;
  --ink: #2b271f;
  --brown: #6b5f4f;
  --accent: #a98f6b;
  --accent-dark: #8a7355;
  --white: #ffffff;
  --border: #ddd6c4;
  --shadow: 0 8px 24px rgba(43, 39, 31, 0.08);
  --radius: 14px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.6;
}

h1, h2, h3, .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

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

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.brand-name {
  font-size: 1.15rem;
  color: var(--ink);
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brown);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--ink); }

.header-phone {
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */

.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  padding: 56px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0 20px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
}

.hero-tagline {
  max-width: 480px;
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--brown);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.badge {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-full {
  width: 100%;
  border: none;
  text-align: center;
}

/* Sections */

.section {
  padding: 72px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
}

.section-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--brown);
}

.about {
  background: var(--white);
}

.about-inner {
  max-width: 760px;
}

.about-text h2 { text-align: center; }
.about-text p { color: var(--brown); }

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--ink);
}

.service-card p {
  color: var(--brown);
  font-size: 0.92rem;
  margin: 0;
}

/* Gallery */

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Reviews */

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
}

.review-card p {
  font-size: 0.94rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.85rem;
}

/* Contact */

.contact {
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { text-align: left; }
.contact-info p { color: var(--brown); }

.contact-details {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.contact-details li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.contact-details a { font-weight: 600; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 14px 0 6px;
}

.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream-light);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.contact-form button {
  margin-top: 22px;
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: var(--cream-light);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: #cfc9b8;
}

/* Responsive */

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-logo {
    margin: 0 auto 20px;
  }
  .hero-badges,
  .hero-actions {
    justify-content: center;
  }
  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-photo img {
    height: 320px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 14px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid img { height: 160px; }
}
