/* Typography */
:root {
  /* Cream background */
  --bg: #e6ded2;
  /* Dark green (primary text/brand) */
  --ink: #5a6857;
  /* Light green (muted text) */
  --muted: #7a8a73;
  /* Muted pink (borders/lines) */
  --line: #5a6857;
  /* Lavender (soft section bg) */
  --soft: #b1a1bb;
  /* Brand and accent hues */
  --brand: #5a6857;
  --accent: #816e84;
  /* Font families */
  --font-hero-light: "Hero", sans-serif;
  --font-hero-regular: "Hero", sans-serif;
  --font-forum: "Forum", serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* Holiday Banner */
.holiday-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  z-index: 25;
}

.holiday-banner strong {
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0; z-index: 20;
  backdrop-filter: saturate(120%) blur(6px);
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.brand img { width: 120px; height: auto; }
.logo-text { font-family: var(--font-forum); font-weight: 400; }
.home-text { font-family: var(--font-forum); font-weight: 400; text-transform: uppercase; }
.site-header nav { display: flex; gap: 22px; }
.site-header nav a { color: var(--muted); font-weight: 500; }
.site-header nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, rgba(230, 222, 210, 0.8) 30%, rgba(177, 161, 187, 0.6) 70%, var(--soft) 100%);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-inner { text-align: center; }
.hero-logo { width: 88px; height: 88px; margin: 0 auto 14px; border-radius: 50%; }
.hero h1 { font-family: Inter, Georgia, serif; font-size: clamp(32px, 6vw, 54px); line-height: 1.1; margin: 6px 0 10px; letter-spacing: 0.2px; }
.hero p { color: var(--ink); margin: 0 auto 18px; max-width: 720px; }
.cta { display: inline-flex; gap: 12px; }

.btn { border: 1px solid var(--ink); padding: 10px 16px; border-radius: 999px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
.btn.primary { background: var(--ink); color: #fff; }
.btn.ghost { border-color: var(--line); color: var(--ink); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,0.06); }

/* Sections */
.section { padding: 64px 0; }
.section:first-of-type { padding-top: 120px; }
.section.soft { 
  background: linear-gradient(135deg, var(--soft) 0%, rgba(177, 161, 187, 0.8) 50%, var(--soft) 100%);
  border-top: 1px solid var(--line); 
  border-bottom: 1px solid var(--line); 
}
.center { text-align: center; }
.lead { color: var(--muted); max-width: 720px; margin: 8px auto 0; font-family: Inter, sans-serif; font-weight: 200; }

h2 { font-family: Inter, Georgia, serif; font-weight: 600; font-size: clamp(26px, 4.8vw, 40px); line-height: 1.2; margin: 0 0 8px; }
h3 { font-family: Inter, Georgia, serif; font-size: 22px; margin: 0 0 6px; }
h4 { font-family: Inter, Georgia, serif; font-size: 18px; font-weight: 600; margin: 32px 0 0; }

/* Hero font styling for special elements */
.lead { font-family: var(--font-hero-regular); font-weight: 400; }
.feature h3 { font-family: var(--font-hero-regular); font-weight: 400; }

/* Split */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; }
.split-media .photo { width: 100%; padding-top: 70%; background-size: cover; background-position: center; border-radius: 14px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.split-copy p { color: var(--muted); }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; margin-top: 6px; }
.link-arrow::after { content: "→"; transition: transform .2s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* Section Navigation */
.section-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.nav-tab {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-tab:hover {
  color: var(--ink);
  background: rgba(90, 104, 87, 0.1);
}

.nav-tab.active {
  color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* Cards */
.grid.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 12px; max-width: 800px; margin-left: auto; margin-right: auto; }
.card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.card-image-container { position: relative; }
.card img { aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 14px; display: grid; gap: 8px; }
.card h3 { font-family: Inter, sans-serif; font-weight: 300; font-size: 18px; margin: 0 0 6px; }
.card p { color: var(--muted); margin: 0; font-family: Inter, sans-serif; font-weight: 200; }
.card p.price { color: var(--ink); font-weight: 600; font-size: 14px; }
.card ul { margin: 4px 0 0; padding-left: 18px; color: var(--muted); }
.card ul li { margin: 4px 0; }

/* Coming Soon Banner */
.coming-soon-banner {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Size Selector */
.size-selector {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-hero-regular);
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.size-selector:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(129, 110, 132, 0.1);
}

/* Features */
.grid.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 18px; }
.feature { background: #fff; border: 1px solid var(--line); padding: 18px; border-radius: 12px; }
.feature p { color: var(--muted); margin: 0; font-family: Inter, sans-serif; font-weight: 200; }
.badge { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--ink); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 700; margin-bottom: 8px; }

/* Testimonials */
.testimonials .quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 12px; }
.testimonials blockquote { margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; font-style: italic; position: relative; font-family: Inter, sans-serif; font-weight: 200; }
.testimonials cite { display: block; margin-top: 8px; color: var(--muted); font-style: normal; font-family: Inter, sans-serif; font-weight: 200; }
.testimonials .stars { color: #fbbf24; font-size: 16px; margin-bottom: 8px; }

/* Photo Gallery */
.photo-gallery { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px; 
  margin-top: 24px; 
}
.gallery-item { 
  position: relative; 
  border-radius: 12px; 
  overflow: hidden; 
  background: #fff; 
  border: 1px solid var(--line);
}
.gallery-item img { 
  width: 100%; 
  height: 250px; 
  object-fit: cover; 
  display: block; 
}
.gallery-caption { 
  padding: 12px; 
  font-family: Inter, sans-serif; 
  font-weight: 200; 
  color: var(--muted); 
  font-size: 14px; 
  text-align: center; 
}

/* Contact */
.contact .contact-form { margin-top: 18px; }
.contact .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 6px; font-weight: 300; color: var(--brand); font-family: Inter, sans-serif; }
input, textarea { width: 100%; padding: 12px 12px; border: 1px solid var(--line); border-radius: 10px; font: inherit; color: var(--ink); background: #fff; }
textarea { resize: vertical; }
button { cursor: pointer; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 20px 0; background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.foot-brand img { width: 28px; height: 28px; border-radius: 50%; }
.foot-links { display: inline-flex; gap: 16px; justify-content: center; }
.foot-legal { text-align: right; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .grid.cards { grid-template-columns: 1fr 1fr; max-width: 100%; margin-top: 12px; }
  .grid.features { grid-template-columns: 1fr 1fr; }
  .testimonials .quotes { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .foot-legal { text-align: center; }
  .section-nav { gap: 16px; }
  .nav-tab { padding: 6px 12px; font-size: 14px; }
  .photo-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .site-header nav { display: none; }
  .grid.cards { grid-template-columns: 1fr; max-width: 100%; margin-top: 12px; }
  .grid.features { grid-template-columns: 1fr; }
  .contact .form-row { grid-template-columns: 1fr; }
  .section-nav { gap: 12px; }
  .nav-tab { padding: 6px 10px; font-size: 13px; }
}

/* Star Rating Styles */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin-bottom: 20px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: #ddd;
  font-size: 30px;
  cursor: pointer;
}

.star-rating input:checked ~ label,
.star-rating input:checked + label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #fbbf24;
}

.testimonial-form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.testimonial-form label {
  font-weight: 500;
  color: var(--brand);
}

.testimonial-form input,
.testimonial-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: Inter, sans-serif;
}

.testimonial-form textarea {
  min-height: 120px;
  resize: vertical;
}

.review-section {
  background: linear-gradient(135deg, var(--soft) 0%, rgba(177, 161, 187, 0.8) 50%, var(--soft) 100%);
}

.review-container {
  max-width: 600px;
  text-align: center;
}

.review-cta {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.review-disclaimer {
  color: var(--muted);
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 30px; /* Increased space before the button */
}

.hero-stars .star {
  color: #fbbf24; /* Ensuring yellow color */
  font-size: 36px;
  margin: 0 2px;
}

.nowrap {
  white-space: nowrap;
}


