:root {
  --ink: #111211;
  --cream: #f8f1e4;
  --sand: #e4d3b7;
  --brand: #a66a1f;
  --brand-dark: #6b3a0a;
  --forest: #1c2a21;
  --sky: #c9d8ee;
  --sun: #f4c95d;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Gill Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8e8 0%, #f2e5ce 40%, #efe3cf 100%);
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 241, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(166, 106, 31, 0.15);
}

.header-message {
  max-width: 1200px;
  margin: 0 auto 12px;
  padding: 0 24px 16px;
  font-size: 0.95rem;
  color: rgba(17, 18, 17, 0.75);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(166, 106, 31, 0.2);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--brand);
  color: #fff;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  padding: 40px 0 60px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 14px;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-highlights {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  max-width: 520px;
}

.hero-highlights div {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
  border: 1px solid rgba(166, 106, 31, 0.15);
}

.highlight-title {
  display: block;
  font-weight: 600;
}

.highlight-detail {
  display: block;
  font-size: 0.9rem;
  color: rgba(17, 18, 17, 0.7);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: transparent;
  color: var(--brand-dark);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.compact {
  padding: 8px 14px;
  font-size: 0.9rem;
  margin-top: 12px;
}

.hero-meta {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(17, 18, 17, 0.6);
  display: block;
  margin-bottom: 4px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: #fff;
  padding: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.hero-badge {
  position: absolute;
  right: 14px;
  bottom: -14px;
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.hero-banner {
  position: absolute;
  left: 12px;
  top: -18px;
  background: linear-gradient(120deg, #fff4de, #f4c95d);
  color: var(--brand-dark);
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  box-shadow: var(--shadow);
}

.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.services {
  background: linear-gradient(120deg, #fff4de, #f1dfbf);
  padding: 40px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

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

.service-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(166, 106, 31, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  font-size: 0.95rem;
}

.service-card:nth-child(odd) {
  background: rgba(255, 255, 255, 0.9);
}

.service-card:nth-child(even) {
  background: rgba(244, 201, 93, 0.18);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.12);
}

.service-card.highlight {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 14px 30px rgba(28, 42, 33, 0.35);
  transform: translateY(-4px);
}

.about {
  margin: 80px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.about-content p {
  line-height: 1.6;
}

.about-highlights {
  display: grid;
  gap: 16px;
}

.about-highlights h3 {
  margin-bottom: 6px;
}

.about-panel {
  background: var(--forest);
  color: #fff;
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-hours {
  font-size: 1.4rem;
  font-weight: 600;
}

.about-address {
  margin-top: 18px;
  display: grid;
  gap: 6px;
}

.products {
  margin: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.product-card h3 {
  margin: 0;
}

.product-text {
  padding: 8px 4px 18px;
}

.quotes {
  margin: 80px 0;
}

.quote-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(166, 106, 31, 0.15);
}

.quote-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

.quote-author {
  margin: 0;
  color: rgba(17, 18, 17, 0.7);
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 80px 0;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-form {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(17, 18, 17, 0.2);
  padding: 10px 12px;
  font-family: inherit;
}

.map {
  margin: 80px 0;
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 18, 17, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-note {
  font-size: 0.95rem;
}

.footer-tagline {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 18, 17, 0.5);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 24px;
  z-index: 20;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  display: grid;
  gap: 12px;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: 1px solid rgba(17, 18, 17, 0.2);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.modal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: rgba(17, 18, 17, 0.6);
  margin: 0;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 20px;
  }

  .services {
    padding: 28px;
  }

  .header-message {
    text-align: center;
  }
}
