:root {
  --ink: #1b1a17;
  --red: #7d1f23;
  --red-dark: #5c1417;
  --cream: #faf6f0;
  --cream-dark: #f0e9de;
  --line: #e3dacb;
  --muted: #6b6459;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  margin: 0 0 0.4em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

a { color: inherit; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
}

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

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--red-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('assets/hero-bg.jpg') center 60% / cover no-repeat;
  color: #fdf9f2;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.72) 0%, rgba(20,16,12,0.6) 45%, rgba(20,16,12,0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: #e7c9a3;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: #d84a4f;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  margin-bottom: 22px;
}

.hero-sub {
  max-width: 560px;
  font-size: 1.08rem;
  color: #eee6da;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover { background: var(--red-dark); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

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

.section h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  text-align: center;
}

.section-lede {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

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

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 26px;
  text-align: center;
}

.service-icon {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* About */
.about {
  background: var(--ink);
  color: #f2ede4;
}

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

.about h2 { color: #fff; text-align: left; }

.about-text p { color: #d9d2c5; font-size: 1.05rem; }

/* Location */
.location { background: var(--cream-dark); }

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

.location h2 { text-align: left; }

.location-address {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.location-map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.location-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

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

.contact-inner { max-width: 560px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form .btn { align-self: flex-start; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #cfc8bb;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-inner p {
  margin: 0;
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 780px) {
  .site-nav { gap: 16px; font-size: 0.85rem; }
  .location-inner { grid-template-columns: 1fr; }
  .about h2, .location h2 { text-align: center; }
  .about-inner, .location-text { text-align: center; }
  .hero { min-height: 100vh; }
}

@media (max-width: 520px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .brand-logo { height: 42px; }
}
