:root {
  --gold: #a3792f;
  --gold-dark: #7d5b23;
  --cream: #faf5ea;
  --cream-dark: #f0e6d2;
  --ink: #2b2420;
  --serif: 'Playfair Display', Georgia, serif;
  --body-font: 'Cormorant Garamond', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold-dark);
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 245, 234, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand img { height: 52px; display: block; }

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--gold-dark);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-outline {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-small {
  padding: 9px 20px;
  font-size: 13px;
  background: var(--gold);
  color: #fff;
}
.btn-small:hover { background: var(--gold-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/hero.jpg') center 30%/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.55) 0%, rgba(20,15,10,0.65) 50%, rgba(20,15,10,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 140px 24px 60px;
  max-width: 720px;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.35));
}

.hero-content h1 {
  color: #fdf9f0;
  font-size: 3.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 1.2rem;
  color: #f2ead9;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 100px 0; }

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  font-size: 1.2rem;
  color: #6b5f52;
  margin-bottom: 50px;
}

/* About */
.about { background: var(--cream); }
.about-inner { max-width: 760px; text-align: center; margin: 0 auto; }
.about h2 { font-size: 2.4rem; margin-bottom: 24px; }
.about p { margin-bottom: 18px; font-size: 1.2rem; color: #4a4038; }
.link-arrow {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--serif);
  color: var(--gold);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* Services */
.services { background: var(--cream-dark); }

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

.service-card {
  background: #fff;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(163,121,47,0.18);
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(122, 92, 35, 0.15);
}

.service-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card p { font-size: 1.05rem; color: #5a4f45; margin-bottom: 18px; min-height: 78px; }
.service-card .price {
  display: inline-block;
  font-family: var(--serif);
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.services-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: #8a7c6c;
  font-style: italic;
}

/* Why */
.why { background: var(--cream); }
.why-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.why-item h3 { font-size: 1.3rem; margin-bottom: 12px; }
.why-item p { color: #5a4f45; font-size: 1.1rem; }

/* Contact */
.contact { background: var(--cream-dark); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-info h2 { font-size: 2.3rem; margin-bottom: 18px; }
.contact-info p { font-size: 1.15rem; color: #4a4038; margin-bottom: 26px; }
.location-line {
  margin-top: 20px;
  font-family: var(--serif);
  letter-spacing: 0.05em;
  color: var(--gold-dark);
}
.contact-map {
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #e7dcc9;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo { height: 46px; filter: brightness(0) invert(1) opacity(0.85); }
.footer-inner a { color: var(--gold); letter-spacing: 0.05em; }
.footer-inner a:hover { color: #fff; }
.footer-inner p { font-size: 0.95rem; }

/* Responsive */
@media (max-width: 860px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { position: fixed; top: 76px; left: 0; right: 0; background: var(--cream); flex-direction: column; gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
  .nav.open { max-height: 300px; }
  .nav a { width: 100%; padding: 16px 24px; border-top: 1px solid rgba(0,0,0,0.06); }
  .nav-toggle { display: block; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-tagline { font-size: 1.05rem; }
}
