html, body {
  width: 100%;
  overflow-x: hidden;
}


/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Typography */
:root {
  /* Fonts */
  --font-body: 'Lato', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Font Sizes */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 20px;
  --font-size-xl: 28px;
  --font-size-hero: 38px;

  /* Colors */
  --color-text: #333;
  --color-heading: white;
  --color-bg: #ffffff;
  --color-accent: #a87c5f; /* your warm brand tone */
  --color-muted: #888;
  --color-border: #eee;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
}


body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 400;
  line-height: 1.2;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px; /* Adjust to match your header height */
}

/* header */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem .5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;  
  background-color: #fff;
  border-bottom: 1px solid #eee;
  font-family: 'Helvetica Neue', sans-serif;
  gap: 1rem;
}

.mobile-header.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}


.logo img {
  height: 30px;
  margin-left: 0.5rem;
}

.menu-toggle {
  position: relative;
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

/* Sketchy hamburger image */
.hamburger-sketch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: auto;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.menu-toggle.open .hamburger-sketch {
  opacity: 0;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hamburger-icon span {
  width: 95px;
  height: 6.5px;
  background-color: #2b2b2b;
  border-radius: 3px;
  transition: background-color 0.3s ease;

  
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none !important;
  }
}


/* Tools container */
.tools-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.4s ease;
}


/* Starting state */
.tool {
  position: absolute;
  width: 60px;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.5s ease;
}

/* On open: fade + rotate tools */
.menu-toggle.open .tools-image {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle.open .tool.chisel {
  transform: rotate(45deg);
}

.menu-toggle.open .tool.ruler {
  transform: rotate(-45deg);
}


.chisel {
  z-index: 2;
}

.ruler {
  z-index: 1;
}


.tools-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* Toggle effect */
.menu-toggle.open .hamburger-icon {
  opacity: 0;
}



.phone a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.phone a:hover {
  color: #a87c5f;
}


.phone {
  margin-right: 1rem;
  font-family: var(--font-body);
}

/* Mobile Nav Dropdown */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 500px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  max-height: 400px;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  border-radius: 12px;
  z-index: 1000;
  pointer-events: none; /* 👈 prevents clicks when nav is hidden */
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.mobile-nav.open {
  max-height: 400px; /* Adjust as needed */
  opacity: 1;
  pointer-events: auto; /* 👈 re-enable clicks when nav is open */
}

.mobile-nav ul {
  list-style: none;
  padding: 1rem;
  text-align: center;
}

.mobile-nav li {
  padding: 0.5rem 0;
  border-bottom: none;
}

.mobile-nav a {
  color: #222;
  font-size: 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.75;
}

.mobile-nav a:hover {
  color: #a87c5f; /* High-end warm tone */
}

html {
  scroll-behavior: smooth;
}



/* Base Hero Styling */
/* ✅ Base Hero Styling */
html, body {
  width: 100%;
  overflow-x: hidden;
}


.hero {
  position: relative;
  width: 100%;
  height: 50vh; /* or 70vh for bigger hero */
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  padding-top: 0; /* ✅ remove padding, use scroll offset via CSS if needed */
  box-sizing: border-box;
  padding-bottom: 3rem;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%; /* ✅ fill full hero */
}

/* ✅ Background Image */
.hero-bg {
  position: absolute;
  top: 0; /* ✅ align at top of section */
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ ensure full coverage */
  z-index: 1;
}

/* ✅ Hero Text: Centered on Mobile */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
  padding: 1rem;
  width: 90%;
  max-width: 800px;
}


.hero-text h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.hero-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

/* ✅ Small Screens: Push text lower */
@media (max-width: 767px) {
  .hero-text {
    top: 65%;
    transform: translate(-50%, -60%);
  }
}


/* ✅ Desktop Layout: Split + Angled Image */
@media (min-width: 1024px) {
  .hero {
    padding-top: 100px; /* Desktop header height */
    height: 75vh;
    margin-bottom: var(--spacing-lg);
  }

  .hero-content {
    display: flex;
    flex-direction: row-reverse;
    height: 100%;
    position: relative;
  }

  .hero-bg {
    position: relative; /* ✅ now respects layout */
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
  }

  .hero-text {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    width: 50%;
    padding: 4rem;
    background-color: #fff;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-text h1,
  .hero-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    max-width: 30ch;
    color: #333 !important;
  }


}


.hero-text .btn-primary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-text .btn-primary:hover {
  background-color: #8b6047; /* Darker shade for hover */
  transform: translateY(-3px);
}
@media (max-width: 1023px) {
  .hero {
    padding-top: 100px; /* Adjust based on actual header height */
  }
}


/* Intro and Location Text */
.intro-text,
.location-text {
  padding-top:5rem;
  text-align: center;
  background-color: #ffff;
  overflow: hidden;
}

.intro-text h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #333 !important;
  font-weight: 600;
}

.intro-text h2 .line-two {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: #444;
}


/* Services Section */
.services {
  background-color: #f9f9f7;
}


.intro-text p,
.location-text p {
  max-width: 700px;
  margin: 0 auto 0.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333
}

.intro-text .container {
  padding-top: 0;  /* adjust as needed */
  margin-top: 0;
}


/* Review block from before */
.review-highlight {
  background-color: #f9f7f5; /* warm light neutral — soft, not flat */
  padding: var(--spacing-md) var(--spacing-md);
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03); /* smaller shadow */
  border-radius: 12px;
  margin: var(--spacing-lg) auto;
  max-width: 700px;
}

.review-highlight blockquote {
  font-style: italic;
  font-size: .85rem; /* 👈 smaller */
  line-height: 1.5;
  color: #555;
  margin: 0 auto;
  position: relative;
  padding: 1.25rem 1rem;
}

.review-highlight blockquote::before {
  content: "“";
  font-size: 3rem;
  color: #a87c5f;
  position: absolute;
  top: 0;
  left: 1rem;
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.review-highlight cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
}

.stars {
  color: #a87c5f;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-right: 0.4rem;
  vertical-align: middle;
  font-family: 'Georgia', serif;
  opacity: 0.7;
}

.intro-text {
  margin-bottom: 1rem;
}


/* Services */
.service-block {
  background: #ffffff;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03); /* subtle, modern shadow */
}

.services {
  background-color: #f9f9f7;
  padding: 4rem 1.5rem 1rem;
  text-align: center; /* ✅ Center all content */
}



.services .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-block {
  text-align: center; /* ✅ ensures everything in block is centered */
}

.service-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.service-block p {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #444;
  line-height: 1.6;
}

.service-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* softer */
  transition: transform 0.3s ease;
  object-position: bottom center;
}

.service-gallery img:hover {
  transform: scale(1.015); /* subtle zoom on hover */
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: underline;
  color: #222;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.service-link:hover {
  opacity: 0.7;
}

.section-break {
  text-align: center;
  margin-bottom: 2rem;
}

.section-break hr {
  border: none;
  height: 1px;
  width: 60px;
  background-color: #ccc;
  opacity: 0.4;
  margin: 0 auto;
}

/* On desktop, images in a row */
@media (min-width: 768px) {
  .service-gallery {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .service-gallery img {
    width: calc(33.333% - 1rem);
    max-width: 100%;
    height: auto;
  }

  .service-block {
    padding: 2rem 2rem;
  }

  .service-block p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-gallery img:hover {
  transform: scale(1.015) translateY(-2px);
}

}


/* Refined Section Title */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #222;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.3;
  margin-top: 0;
  padding-top: 1rem;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Elegant CTA Link/Button */
.cta-outline-arrow {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: #222;
  border: 1px solid #222;
  border-radius: 6px; /* 👈 smaller radius */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.cta-outline-arrow .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-outline-arrow:hover {
  background-color: #222;
  color: #fff;
}

.cta-outline-arrow:hover .arrow {
  transform: translateX(5px);
}


/* What can you expect section */
.expect-section {
  background-color: #fff;
  padding: 0 1.5rem 2rem;
  text-align: center;
  margin-top: 2rem; /* 👈 reduce spacing between sections */
  max-width: 1400px; /* give more space */
  margin: 0 auto;
  padding: 4rem 2rem; /* add vertical padding */
}


.section-divider {
  margin-bottom: 1.5rem;
}

.section-divider img {
  width: 48px;
  opacity: 0.5;
  margin-bottom: 1rem;
}


.expect-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem; /* more gap between cards */
}

.expect-item {
    flex: 1 1 300px; /* min width 300px, but can expand */
  max-width: 400px;
}

.expect-icon {
  width: 60px;
  margin-bottom: 1rem;
  opacity: 0.9;
  display: block;
  margin: 0 auto 1rem;
}

.expect-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.expect-item {
  background: #f9f7f5;
  padding: 2rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  max-width: 400px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.expect-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}


/* Desktop grid layout */
@media (min-width: 768px) {
  .expect-grid {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .expect-item {
    flex: 0 1 300px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}

.expect-section .section-title {
  margin-top: 0;
}

.section-divider img {
  margin-top: 0;
}

.project-cta {
  background-color: #f9f7f5;
  padding: 2rem 1rem 3rem;
  text-align: center;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.project-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}


/* wondering cta */
.project-quote-cta {
  max-width: 1000px;      /* Match the visual width of your content blocks */
  margin: 2rem auto;     /* Center it horizontally */
  background-color: #f9f7f5;
  padding: 2.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  padding-bottom: 1rem;
}


.client-quote {
  font-style: italic;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.client-quote {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #555;
  text-align: center;
}

.client-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  color: #888;
}

.project-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: #222; /* ✅ boutique-neutral readable tone */
  margin-bottom: 0.75rem;
}


.project-subtext {
  font-family: var(--font-body); /* Lato */
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.cta-outline-arrow {
  margin-top: 0.5rem; /* optional */
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #222;
  width: 100%;
  padding: 0.75rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
  outline: none;
}

.faq-question:hover {
  color: #a87c5f;
}

.faq-icon {
  font-size: 1.25rem;
  color: #999;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.faq-label {
  flex: 1;
  text-align: left;
  background: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.faq-answer p strong {
  font-weight: 600;
  color: #222;
}

.faq-icon {
  font-size: 1.25rem;
  color: #999;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* When expanded, rotate the + to look like × */
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

/* Testimonial Section */

.reviews-section {
  background-color: #fff;
  padding: 1.5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 100%;
  overflow-x: hidden;
}

.review {
  background: #f9f7f5;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  font-style: italic;
  color: #444;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.review p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review cite {
  display: block;
  font-size: 0.9rem;
  color: #888;
  font-style: normal;
}


/* Optional: Responsive desktop grid */
@media (min-width: 768px) {
  .reviews-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .review {
    flex: 0 1 48%;
    max-width: 48%;
  }
}


.section-break {
  text-align: center;
  margin: 2rem auto 1rem;
}

.section-break hr {
  width: 60px;
  height: 1px;
  background-color: #ccc;
  border: none;
  opacity: 0.4;
}

/* Phone link in header */
header .phone a {
  color: #222 !important;
  text-decoration: none !important;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* Meet the makers */
.meet-the-makers {
  background-color: #f9f6f3;
  padding: 3rem 1.5rem;
}

.meet-the-makers h2 {
  color: #222
}
.maker-intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.meet-the-makers .maker-title {
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 2rem; /* optional for spacing */
}

/* Photos */
.maker-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.maker-photos figure {
  margin: 0;
  text-align: center;
}

.maker-photos img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
}

.maker-photos figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Text */
.maker-text {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
}

/* ✅ Desktop: Side-by-side */
@media (min-width: 1024px) {
  .maker-intro {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 3rem;
  }

  .maker-photos {
    flex: 0 0 auto;
  }

  .maker-text {
    flex: 1;
  }
}



.cost-guide {
  background-color: #f9f7f5;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: 2rem;
}

.cost-intro,
.price-note {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.kitchen-cost-grid {
  display: flex;
  flex-direction: column; /* Mobile: stacked */
  gap: 2rem;
  margin-top: 2rem;
}

.kitchen-style {
  text-align: center;
  padding: 1rem;
}

.kitchen-style img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.kitchen-style h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #222;
  margin-top: 1rem;
}

.kitchen-style p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #444;
  margin-top: 0.5rem;
}

.price-range {
  font-weight: 600;
  color: #444;
  font-size: 1.05rem;
  margin-top: 0.75rem;
}


/* ✅ Desktop: 3-column layout */
.kitchen-cost-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center; /* <-- This will center child blocks */
}


.kitchen-style {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 320px; /* consistent width */
  width: 100%; /* keeps it responsive */
}



.kitchen-style img {
  width: 100%;
  border-radius: 10px;
}


@media (min-width: 768px) {
  .kitchen-cost-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .kitchen-style {
    flex: 1;
    padding: 0 1rem;
  }
}

.price-toggle {
  background: none;
  border: none;
  color: #a87c5f;
  font-weight: 600;
  font-size: 1rem;
  margin: 0.5rem 0 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.price-toggle:hover {
  color: #5c3b23;
}

.cost-breakdown {
  text-align: left;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.cost-breakdown ul {
  list-style: none;
  padding-left: 0;
}

.cost-breakdown li {
  margin-bottom: 0.4rem;
}

.spec-download-cta {
  margin-top: 2rem;
  text-align: center;
}

.spec-download-cta p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #444;
}

#spec-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 1.5rem auto 0;
  text-align: left;
}

#spec-form input[type="email"] {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#spec-form button {
  margin-top: 0.5rem;
  align-self: flex-start;
}

#spec-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 1.5rem auto 0;
  text-align: left;
}

#spec-form input[type="text"],
#spec-form input[type="email"] {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#spec-form button.btn-primary {
  margin: 0 auto;
  display: block;
  margin: 1rem auto 0;
}

.cost-guide {
  overflow: visible;
}

.kitchen-cost-grid {
  display: block;
}
.kitchen-style {
  margin-bottom: 2rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}


.dynamic-welcome-text {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem; /* adjust as needed */
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* header media query */
@media (min-width: 1024px) {
  .header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    
  }

  .mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:2rem 1rem;
}

.logo {
  flex: 1;
}

.mobile-nav {
  flex: 2;
  display: flex;
  justify-content: center;
  background: none;
  box-shadow: none;
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  display: none !important; /* Hide mobile nav on desktop */
  
}

.mobile-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}


.phone {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}

.maker-intro {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .maker-photos {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .maker-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    margin: 0 auto;
    padding: 0;
  }

  .maker-intro {
    border-left: 1px solid #eee;
    padding-left: 3rem;
  }
  .maker-photos figcaption {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}
}

/* When expanded, rotate the + to look like × */
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.section-break {
  text-align: center;
  margin: 2rem auto 1rem;
}

.section-break hr {
  width: 60px;
  height: 1px;
  background-color: #ccc;
  border: none;
  opacity: 0.4;
}

/* contact form */
.contact-section {
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  background-color: #f9f7f5; 
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
}

.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.contact-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: var(--font-size-base);
}
#contact {
  scroll-margin-top: 120px;
}

.contact-section h2 {
  color: #5c3b23; /* Brand brown */
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-section button.btn-primary {
  display: block;
  margin: 2rem auto 0;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: #222;
  background: none;
  border: 1px solid #222;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-section button.btn-primary:hover {
  background-color: #222;
  color: #fff;
}

#form-spinner {
  font-size: 0.95rem;
  color: #777;
}

/* Base form feedback container */
#form-feedback {
  margin-top: 1.5rem;
  text-align: center;
}

/* Sending... */
#form-spinner {
  color: #a87c5f; /* your brand brown */
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
}

/* Success */
.form-success {
  color: #2f7b4f; /* calm green */
  font-size: 1.05rem;
  font-weight: 500;
  background-color: #e7f7ec;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  display: inline-block;
  max-width: 90%;
}

/* Error */
.form-error {
  color: #a94442;
  font-size: 1.05rem;
  font-weight: 500;
  background-color: #fcebea;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  display: inline-block;
  max-width: 90%;
}

.spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid #a87c5f;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 0.5rem;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

form input,
form textarea,
form select {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.75rem;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: #a87c5f; /* your brand brown */
  outline: none;
}

/* back arrow on form */
.back-arrow {
  display: inline-block;
  margin: 0 auto 2rem;
  text-align: center;
  transition: opacity 0.3s ease;
}

.back-arrow svg {
  display: block;
  margin: 0 auto;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-arrow:hover svg {
  opacity: 1;
  transform: translateY(-3px);
}

.contact-section .back-arrow {
  display: block;
  margin: 0 auto 2rem;
}
.site-footer {
  background-color: #f9f7f5;
  padding: 3rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #a87c5f;
}

.footer-contact p,
.footer-legal p {
  margin: 0.25rem 0;
}

.footer-contact a,
.footer-legal a {
  color: #222;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer-contact a:hover,
.footer-legal a:hover {
  opacity: 0.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social a:hover img {
  opacity: 1;
}

/* Phone link in header */
header .phone a {
  color: #222 !important;
  text-decoration: none !important;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* Cost guide */
.cost-guide {
  background-color: #f9f7f5;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: 2rem;
}

.cost-intro,
.price-note {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.kitchen-cost-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.kitchen-style {
  text-align: center;
  padding: 1rem;
}

.kitchen-style img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.kitchen-style h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #222;
  margin-top: 1rem;
}

.kitchen-style p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #444;
  margin-top: 0.5rem;
}

.price-range {
  font-weight: 600;
  color: #444;
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .kitchen-cost-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .kitchen-style {
    flex: 1;
    padding: 0 1rem;
  }
}

.price-toggle {
  background: none;
  border: none;
  color: #a87c5f;
  font-weight: 600;
  font-size: 1rem;
  margin: 0.5rem 0 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.price-toggle:hover {
  color: #5c3b23;
}

.cost-breakdown {
  text-align: left;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.cost-breakdown ul {
  list-style: none;
  padding-left: 0;
}

.cost-breakdown li {
  margin-bottom: 0.4rem;
}

.spec-download-cta {
  margin-top: 2rem;
  text-align: center;
}

.spec-download-cta p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #444;
}

#spec-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 1.5rem auto 0;
  text-align: left;
}

#spec-form input[type="email"] {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#spec-form button {
  margin-top: 0.5rem;
  align-self: flex-start;
}

#spec-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 1.5rem auto 0;
  text-align: left;
}

#spec-form input[type="text"],
#spec-form input[type="email"] {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#spec-form button.btn-primary {
  margin: 0 auto;
  display: block;
  margin: 1rem auto 0;
}

.cost-guide {
  overflow: visible;
}

.kitchen-style {
  margin-bottom: 2rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}


.dynamic-welcome-text {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem; /* adjust as needed */
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
}



.phone {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}


/* Button styles */
.btn-primary {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: #fff;
  background-color: var(--color-accent);
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #8b6047; /* darker shade */
  transform: translateY(-3px);
}
.hero-welcome {
  text-align: center; /* ensures text and inline elements center */
}

.hero-welcome .btn-primary {
  display: inline-block; /* keeps button size */
  margin: 0 auto; /* centers if block container exists */
}

/* Desktop Nav Hidden on Mobile */
/* Hide desktop nav on screens smaller than 768px */



.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: #333;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  text-align: center;
}

.nav-icon {
  width: 50px;
  height: auto;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.nav-text {
  transition: opacity 0.3s ease;
}

.nav-item:hover .nav-text {
  opacity: 0;
}

.nav-item:hover .nav-icon {
  opacity: 1;
}

/* ✅ Whisk: Rotate 4 times */
@keyframes rotateWhisk {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(15deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}
.nav-item:hover .whisk-icon {
  animation: rotateWhisk 0.6s ease-in-out 4 forwards;
  transform-origin: top center;
}

/* ✅ Hanger: Swing 4 times */
@keyframes swingHanger {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(10deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}
.nav-item:hover .hanger-icon {
  animation: swingHanger 0.6s ease-in-out 4 forwards;
  transform-origin: top center;
}

/* ✅ Chair: Rock once */
@keyframes rockChair {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(-6deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}
.nav-item:hover .chair-icon {
  animation: rockChair 0.6s ease-in-out 1 forwards;
  transform-origin: bottom left;
}

/* ✅ Pen: Tilt twice */
@keyframes tiltPen {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(12deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}
.nav-item:hover .pen-icon {
  animation: tiltPen 0.6s ease-in-out 2 forwards;
  transform-origin: center;
}


.kitchen-cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem; /* space between items */
  justify-items: center;
  margin-bottom: 2rem; /* space below grid */
}

.kitchen-style {
  max-width: 320px;
  text-align: center;
}

.spec-download-cta {
  width: 100%;
  display: flex;
  justify-content: center;
}

.spec-download-cta .btn-primary {
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}

#show-spec-form {
  display: block;
  margin: 2rem auto 0 auto;
  text-align: center;
}

/* COOKIE BANNER */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  max-width: 280px;
  text-align: center;
  z-index: 9999;
}

.cookie-buttons {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary,
.btn-secondary {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 6px;
  border: none;
}

.btn-primary {
  background-color: #a87c5f;
  color: white;
}

.btn-primary:hover {
  background-color: #8b6047;
}

.btn-secondary {
  background-color: #f3f3f3;
  color: #333;
}

.btn-secondary:hover {
  background-color: #ddd;
}

.desktop-text {
  display: none;
}

@media (min-width: 1024px) {
  .cookie-banner {
    left: auto;
    right: 20px;
    transform: none;
    max-width: 400px;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    text-align: left;
  }
  .desktop-text {
    display: inline;
  }
  .mobile-text {
    display: none;
  }
}


/* Hide desktop nav by default */
.desktop-nav {
  display: none;
}

/* Mobile nav default */
.mobile-nav {
  display: none; /* hidden until hamburger opens it */
}

/* Desktop: show desktop nav, hide mobile nav and hamburger */
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .mobile-nav {
    display: none !important; /* force hide mobile menu */
  }

  .menu-toggle {
    display: none; /* hide hamburger */
  }
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  flex: 1;
}

.menu-toggle {
  flex: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✅ Mobile Navigation - Centered Floating Box */
.mobile-nav {
  position: absolute;
  top: 100%; /* just below the header */
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 500px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  max-height: 0; /* collapsed by default */
  overflow: hidden;
  z-index: 1000;
}

/* ✅ Open State */
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  max-height: 400px; /* adjust if menu grows */
}

/* ✅ List Reset and Centering */
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ✅ Menu Items */
.mobile-nav li {
  width: 100%;
}

.mobile-nav a {
  display: block;
  text-decoration: none;
  color: #222;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #a87c5f; /* your brand accent */
}

/* ✅ Hide on Desktop */
@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav {
  display: block !important;
}

.mobile-nav.open {
  display: block !important;
}
/* Force mobile nav to show when .open is active */
.mobile-nav.open {
  display: block !important;
  opacity: 1 !important;
  max-height: 400px !important;
  z-index: 9999 !important; /* Bring above everything */
}

/* Ensure it hides only on true desktop */
@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
    opacity: 1 !important;
  }
}

/* Container */
.cost-guide .container {
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.cost-intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #555;
}

/* Kitchen Style Grid */
.kitchen-cost-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.kitchen-style img {
  width: 100%;
  aspect-ratio: 4 / 3; /* Consistent shape */
  object-fit: cover;
  border-radius: 8px;
}


.kitchen-style {
  text-align: center;
}

.price-range {
  font-size: 1.1rem;
  color: #333;
}

/* Price Context */
.price-context {
  background: #faf7f5;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
}

.price-context h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price-context ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: left;
  display: inline-block;
}

.price-context li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.price-context li span {
  color: #8b5e3c;
  margin-right: 6px;
  font-weight: bold;
}
.comparison-image img {
  max-width: 600px; /* Reduce width for desktop */
  width: 100%;      /* Keeps it responsive */
  height: auto;     /* Maintain aspect ratio */
  margin: 0 auto;   /* Center align */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Spec Comparison */
.spec-examples {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.spec-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spec-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.spec-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.8rem;
}

.spec-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-card li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.total {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.spec-card.premium {
  border: 2px solid #8b5e3c;
  background: #fffdfb;
}

.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* CTA */
.spec-download-cta {
  text-align: center;
  margin: 2rem 0;
}

.btn-primary {
  background: #8b5e3c;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary:hover {
  background: #704930;
}

/* Responsive */
@media(min-width: 768px) {
  .kitchen-cost-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .kitchen-style {
    flex: 1;
  }
  .spec-grid {
    flex-direction: row;
  }
  .spec-card {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .kitchen-style {
    text-align: center !important;
  }
}

.spec-guide-container {
  background-color: #f8f6f3;
  border-radius: 12px;
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 3rem auto;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.spec-guide-info {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.spec-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec-form input {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.spec-form button.btn-primary {
  font-weight: bold;
  padding: 0.75rem;
}

.logo img,
.footer-logo {
  max-height: 40px;
  height: auto;
  width: auto;
}
.logo img,
.footer-logo {
  max-height: 40px;
  height: auto;
  width: auto;
}

/* Make logo larger on desktops */
@media (min-width: 768px) {
  .logo img,
  .footer-logo {
    max-height: 70px;
  }
}

.cta-button {
  background-color: #fefefe;
  color: #5c4432;
  padding: 14px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 2px solid #d1c3b4;
  border-radius: 6px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #f5f1ed;
  color: #3c2b1e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

