:root {
  --bg: #ffffff;
  --text: #1b1b1b;
  --muted: #5a5a5a;
  --brand: #c9a46a;
  --brand-ink: #9b733f;
  --brand-soft: #f6debe;
  --surface: #f6f7fb;
  --border: #e5e7ef;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.container {
  width: 100%;
  max-width: 1080px;
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(5px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.site-header + * { margin-top: 0; }
body { padding-top: 52px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 200ms ease, top 200ms ease, opacity 200ms ease;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.menu-toggle.active .hamburger {
  background: transparent;
}
.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}
.brand {
  font-weight: 700;
  font-size: 20px;
  color: var(--brand);
  text-decoration: none;
}
.brand img { height: 140px; display: block; }
.site-nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 20px;
  padding: 8px 10px;
  border-radius: 8px;
}
.site-nav a:hover { background: var(--surface); }
.site-nav a.login-link { font-weight: 700; color: var(--brand); }
.site-nav a.login-link:hover { color: var(--brand-ink); }

.hero {
  background: linear-gradient(180deg, var(--brand-soft), #ffffff);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  padding: 50px 0;
  text-align: center;
}
.hero-logo {
  display: block;
  margin: 0 auto 50px auto;
  height: 300px;
}
.hero h1 {
  margin: 0 0 12px 0;
  font-size: 36px;
  letter-spacing: -0.02em;
}
.hero p {
  margin: 0 auto 20px auto;
  max-width: 1080px;
  color: var(--muted);
}
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(36,89,244,0.18);
}
.btn:hover { background: var(--brand-ink); }

.section { padding: 56px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 {
  margin: 0 0 18px 0;
  font-size: 28px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.card h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
}
.card p { margin: 0; color: var(--muted); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 28px;
  align-items: start;
}
.contact-info p { margin: 0 0 12px 0; }
.contact-info p.item { display: flex; align-items: flex-start; gap: 10px; }
.contact-info .icon { color: var(--brand); line-height: 0; margin-top: 4px; }
.contact-info .icon svg { display: block; }
.contact-info a { color: var(--brand); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.hidden { display: none; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; margin-bottom: 6px; font-weight: 600; }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-actions { margin-top: 8px; }

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.site-footer a { color: var(--brand); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.map-embed { margin-top: 16px; }
.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.addresses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}
.address-card p { margin: 0; }
.address-heading { display: inline-flex; align-items: center; gap: 8px; }
.addresses .icon { color: var(--brand); line-height: 0; }

@media (max-width: 900px) {
  .services { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .addresses { grid-template-columns: 1fr; }
  .header-inner { justify-content: space-between; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 52px;
    background: #fff;
    border-bottom: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    padding: 0 20px;
    overflow: hidden;
    max-height: 0;
    height: 0;
    transform: translateY(-4px);
    pointer-events: none;
    will-change: max-height, transform;
    transition: max-height 250ms ease, transform 250ms ease, padding 200ms ease;
  }
  .site-nav.open {
    max-height: 240px;
    transform: translateY(0);
    pointer-events: auto;
    height: auto;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border);
  }
  .site-header.menu-open { border-bottom: none; }
  .site-nav a {
    display: block;
    margin: 0;
    padding: 10px 12px;
  }
}
@media (max-width: 600px) {
  body { padding-top: 44px; }
  .hero-inner { padding: 50px 20px; }
  .services { grid-template-columns: 1fr; }
  .header-inner { height: 44px; }
  .site-nav { top: 44px; }
  .hero-logo { height: 140px; margin-bottom: 30px; }
  .brand img { height: 24px; }
}
