:root {
  --bg: #ffffff;
  --text: #1b1b1b;
  --muted: #6b7280;
  --line: #ececec;
  --soft: #f8f8f8;
  --accent: #d8b36a;
  --accent-dark: #b58c3f;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 4px;
}
.brand-text h1 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}
.brand-text p {
  margin: 4px 0 0;
  font-size: .82rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #1d1405;
  box-shadow: 0 8px 18px rgba(216,179,106,.35);
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary {
  background: #fff;
  border-color: var(--line);
}
.btn-secondary:hover { border-color: #d2d2d2; transform: translateY(-1px); }
.btn-large { padding: 14px 20px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 26px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin: 8px 0 12px;
}
.eyebrow {
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0;
}
.lead { font-weight: 600; }
.hero-content p { margin: 0 0 10px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.hero-card {
  background: linear-gradient(180deg, #fff, #fafafa);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.hero-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}
.hero-card-info { margin-top: 12px; }
.hero-card-info .label {
  font-size: .8rem;
  color: var(--muted);
  margin: 0 0 4px;
}
.hero-card-info a {
  font-weight: 700;
  color: #0f172a;
}
.small { margin: 6px 0 0; color: var(--muted); font-size: .9rem; }
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .35;
}
.shape-1 {
  width: 260px; height: 260px;
  background: #f6edd9;
  top: -40px; right: -40px;
}
.shape-2 {
  width: 180px; height: 180px;
  background: #f5f5f5;
  left: -60px; bottom: 10px;
}

.section { padding: 34px 0; }
.section.alt { background: #fcfcfc; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { text-align: center; margin-bottom: 18px; }
.section-heading.left { text-align: left; margin-bottom: 10px; }
.section-tag {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 4px;
}
.section-heading h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.section-heading p { color: var(--muted); margin: 6px 0 0; }

.grid { display: grid; gap: 12px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.03);
}
.card p { margin: 0; font-weight: 500; }
.highlight-note {
  margin-top: 14px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
}
.highlight-note p { margin: 0; }

.service-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  box-shadow: 0 5px 14px rgba(0,0,0,.03);
}
.service-card span { font-size: 1.2rem; }
.service-card h4 { margin: 0; font-size: .95rem; line-height: 1.35; }

.two-col {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.info-panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.info-panel h4 { margin: 0 0 8px; }
.info-panel p { margin: 0 0 8px; }

.cta {
  background: linear-gradient(180deg, #fff, #faf9f6);
}
.cta-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cta-wrap h3 { margin: 4px 0 6px; }
.cta-wrap p { margin: 0; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 18px 0 28px;
  background: #fff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img {
  width: 56px; height: 56px; object-fit: contain;
  border: 1px solid var(--line); border-radius: 10px; padding: 3px; background:#fff;
}
.footer-brand p { margin: 0; font-size: .9rem; }
.footer-title { font-weight: 700; }
.footer-motto { color: var(--muted); }
.footer-contact a { color: #0f172a; font-weight: 700; }

.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  background: #fff;
  color: #111;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}
.floating-wa:hover { transform: translateY(-1px); }

@media (max-width: 960px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cta-wrap, .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .header-wrap { align-items: flex-start; }
  .brand-logo { width: 60px; height: 60px; }
  .brand-text h1 { font-size: .95rem; }
  .brand-text p { display: none; }
  .btn { font-size: .9rem; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding-top: 24px; }
}
