:root {
  --color-sand: #f6f1e9;
  --color-sunset-orange: #e07a3f;
  --color-sunset-pink: #d8577a;
  --color-dusk: #2f2a26;
  --color-brown: #6b4a34;
  --color-cream: #fffaf3;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.site-header .logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-brown);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

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

.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(224,122,63,0.35); }

.btn-outline {
  border: 2px solid var(--color-sunset-orange);
  color: var(--color-sunset-orange);
}

.btn-outline:hover { background: var(--color-sunset-orange); color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content { max-width: 600px; padding: 4rem 0; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-sunset-pink);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin: 0.3rem 0 0.2rem;
}

.hero .tagline {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f6e2c8;
}

.hero p { font-size: 1.05rem; margin-bottom: 1.8rem; }

/* Section base */
section { padding: 5rem 0; }

.section-alt { background: var(--color-sand); }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-sunset-orange);
  margin-bottom: 0.4rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col img { border-radius: 12px; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.service-card img { height: 200px; object-fit: cover; width: 100%; }

.service-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }

.service-card h3 { margin: 0 0 0.6rem; font-family: var(--font-heading); }

.service-card p { flex: 1; font-size: 0.95rem; color: #555; }

.service-card .btn { align-self: flex-start; margin-top: 1rem; }

/* Story */
.story-text p { margin-bottom: 1rem; }

/* Contact */
.contact-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  margin-top: 2.5rem;
}

.contact-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.contact-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1.02rem;
}

.contact-details a { text-decoration: none; color: var(--color-sunset-orange); font-weight: 600; }

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

.opening-hours {
  margin-top: auto;
  padding: 1.5rem;
  background: var(--color-sand);
  border-radius: 12px;
}

.opening-hours h3 { margin-top: 0; font-family: var(--font-heading); }
.opening-hours p { font-size: 0.92rem; }
.opening-hours p:last-child { margin-bottom: 0; }

.map-embed {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

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

/* Footer */
footer {
  background: var(--color-dusk);
  color: #eee2d2;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 { font-family: var(--font-heading); margin-top: 0; }

footer a { text-decoration: none; color: #f6e2c8; }

.footer-newsletter { display: flex; gap: 0.6rem; margin-top: 0.5rem; }

.footer-newsletter input {
  flex: 1;
  border: none;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #b8a893;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}

@media (max-width: 800px) {
  .site-nav { display: none; }
  .two-col, .contact-card { grid-template-columns: 1fr; }
  .contact-card img { min-height: 220px; }
  .hero h1 { font-size: 2.2rem; }
}
