/* EDIT BRAND COLORS, TYPOGRAPHY, SPACING: these shared tokens restyle the whole template. */
:root {
  --cream: #f6f2ea;
  --light: #f8f4ef;
  --card: #eae7df;
  --warm-card: #eee7dc;
  --ink: #070707;
  --dark: #121110;
  --gold: #b08d57;
  --gold-ink: #805a26;
  --border: #cdcac3;
  --offer: #504027;
  --offer-card: #735c39;
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: Arial, sans-serif;
  --radius: 22px;
  --container: 1440px;
  --gutter: 32px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.5 var(--sans);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(42px, 4.1vw, 64px);
  line-height: 1.14;
}
h2 {
  font-size: clamp(32px, 3.55vw, 52px);
  line-height: 1.18;
  margin: 12px 0 24px;
}
h3 {
  font-size: 30px;
  line-height: 1.2;
}
p {
  max-width: 650px;
}
ul {
  padding: 0;
  list-style: none;
}
.container {
  max-width: var(--container);
  width: calc(100% - var(--gutter) * 2);
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
.rounded {
  border-radius: var(--radius);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.split > div {
  min-width: 0;
}
.split > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.eyebrow {
  display: inline-block;
  border-radius: 999px;
  background: #ebe6db;
  color: var(--gold-ink);
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 3px 13px;
}
.section-heading {
  margin-bottom: 76px;
}
.section-heading p {
  max-width: 560px;
}
.centered {
  text-align: center;
}
.centered p {
  margin-inline: auto;
}
.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-white {
  background: white;
  color: #070707;
}
.button-gold {
  background: var(--gold);
  color: white;
  font-weight: 700;
}
.button-gold:hover {
  background: #957340;
}
.button-outline {
  background: transparent;
  border-color: var(--border);
  color: inherit;
}
.button-outline:hover {
  background: #b08d5717;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: white;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* EDIT HEADER / LOGO: use BUSINESS.logoImage or BUSINESS.logoText in script.js. */
.site-header {
  background: var(--dark);
  color: white;
}
.nav-wrap {
  max-width: 1600px;
  margin: auto;
  min-height: 74px;
  padding: 12px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: "Leckerli One", cursive;
  color: #5a5958;
  font-size: 36px;
  line-height: 1.3;
  display: inline-block;
}
.brand img {
  max-width: 160px;
  max-height: 48px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.site-header nav > a:not(.button) {
  font-size: 17px;
}
.site-header nav > a:not(.button):hover {
  color: #d5b889;
}
.site-header .button {
  border-radius: 20px;
  font-size: 17px;
  padding: 9px 20px;
  min-height: 40px;
}
.menu-toggle {
  display: none;
}
/* EDIT HERO IMAGE POSITION / OVERLAY: adjust object-position and opacity for replacement photos. */
.hero {
  position: relative;
  /* EDIT HERO HEIGHT: match the reference's approximately 1.66:1 frame. */
  min-height: clamp(625px, 60.3vw, 920px);
  display: flex;
  align-items: center;
  color: white;
  background: #514b3e;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: -1;
}
.hero-content {
  padding-block: 95px;
}
.hero .eyebrow {
  background: #f6f2ea21;
  color: white;
  font-weight: 700;
}
.hero h1 {
  max-width: 840px;
  margin: 18px 0 24px;
}
.hero p {
  max-width: 600px;
  font-size: clamp(13px, 1.16vw, 18px);
  line-height: 1.4;
}
.hero-benefits {
  margin: 20px 0 0;
  font-size: clamp(13px, 1.16vw, 18px);
}
.hero-benefits li {
  margin: 3px 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-benefits li:before {
  content: "✓";
  width: 17px;
  height: 17px;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
}
.hero .button-outline {
  border-color: #ffffff40;
}
.hero .actions { margin-top: 32px; }
.about {
  padding: 125px 0;
}
.about p {
  margin-bottom: 40px;
}
.about .about-image {
  aspect-ratio: 1;
  object-fit: cover;
}
/* EDIT GALLERY / CATEGORY CARDS: image crop, grid columns, card padding and typography. */
.categories,
.reviews,
.featured-section {
  background: var(--light);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.category-card {
  position: relative;
  min-width: 0;
  background: var(--warm-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.category-card:hover {
  transform: translateY(-4px);
}
.category-card img {
  width: 100%;
  /* Override the intrinsic HTML height so object-fit makes a landscape crop. */
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.category-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 15px;
}
.category-content h3 {
  font-size: 34px;
}
.category-content p {
  font-size: 16px;
}
.card-link {
  /* Contain screen-reader-only labels inside their links, including off-screen slides. */
  position: relative;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  align-self: flex-start;
}
.card-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* EDIT PRODUCT GALLERY / CAROUSEL: four cards desktop, two tablet, one mobile. */
.product-section .section-heading {
  max-width: 820px;
}
.carousel-track {
  position: relative;
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 90px) / 4);
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  scroll-snap-align: start;
  min-width: 0;
}
.product-card img {
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.product-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-height: 330px;
}
.price {
  display: inline-block;
  background: #e0dbd1;
  border-radius: 999px;
  color: var(--gold-ink);
  font-size: 14px;
  padding: 2px 12px;
  margin-bottom: 12px;
}
.product-card h3 {
  margin-bottom: 13px;
  font-size: 36px;
}
.product-card p {
  font-size: 16px;
  margin-bottom: 20px;
}
.product-card .card-link {
  margin-top: auto;
}
.featured-section .product-card {
  background: var(--warm-card);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 27px;
  gap: 20px;
}
.carousel-dots {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.carousel-dot {
  position: relative;
  width: 17px;
  height: 32px;
  border: 0;
  background: transparent;
  padding: 0;
}
.carousel-dot:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #aaa7a1;
  border-radius: 50%;
  inset: 13px 5px;
}
.carousel-dot[aria-current="true"]:after {
  background: var(--ink);
}
.carousel-arrows {
  display: flex;
  gap: 10px;
}
.arrow {
  height: 38px;
  width: 38px;
  border: 1px solid #c2bfb8;
  background: #e0ddd6;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.arrow:disabled {
  opacity: 0.65;
  cursor: default;
}
.arrow svg {
  width: 19px;
  height: 19px;
}
.view-all {
  margin-top: 65px;
}
.carousel-track.expanded {
  grid-auto-flow: row;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-columns: auto;
  overflow: visible;
}
.product-section.expanded .carousel-controls {
  display: none;
}
/* EDIT SERVICES / OFFERS / TESTIMONIALS: content arrays in script.js; shared cards below. */
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--card);
}
.info-card h3 {
  margin: 24px 0 13px;
  font-size: 34px;
}
.info-card p {
  font-size: 15px;
}
.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #e0dbd1;
  color: var(--gold-ink);
  display: grid;
  place-items: center;
}
.icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.offers {
  padding-block: 125px;
  background: var(--offer);
  color: white;
}
.offers .eyebrow {
  background: #ffffff0c;
  color: #e3b575;
}
.offers .info-card {
  background: var(--offer-card);
  border-color: #ffffff20;
  display: flex;
  flex-direction: column;
}
.offers .icon-tile {
  background: #ffffff09;
  color: #e3b575;
}
.offers .card-link {
  margin-top: auto;
  padding-top: 22px;
}
.review-card {
  background: var(--warm-card);
}
/* EDIT REVIEW SPACING: preserve the airy reference section around the three cards. */
.reviews { padding-block: 125px; }
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.stars {
  color: #a68149;
  letter-spacing: 2px;
}
.google-mark {
  width: 16px;
  height: 16px;
  display: inline-flex;
}
.review-card blockquote {
  margin: 0 0 25px;
  font-size: 16px;
}
.review-card cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
}
.review-card small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
/* EDIT ADDRESS / HOURS / CONTACT FORMS / GOOGLE MAPS: values live in BUSINESS. */
.location h2 {
  margin-bottom: 22px;
}
.contact-details {
  font-size: 14px;
  margin: 25px 0;
}
.contact-details > div {
  position: relative;
  padding-left: 32px;
  margin: 12px 0;
}
.contact-details > div > span {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold-ink);
}
.contact-details .icon {
  width: 20px;
  height: 20px;
}
dt {
  font-weight: 600;
}
dd {
  margin: 0;
}
.location .actions {
  margin-top: 30px;
}
.quote-form {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: transparent;
  color: inherit;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 14px;
}
.quote-form textarea {
  resize: vertical;
  min-height: 118px;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #796d5d;
  opacity: 1;
}
.quote-form button {
  justify-self: start;
  margin-top: 8px;
}
.form-status:empty {
  display: none;
}
.form-status {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.form-status a {
  text-decoration: underline;
}
.map-block {
  margin-top: 76px;
}
.map-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
.map-heading h3 {
  font-size: 30px;
}
.text-link {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
#store-map {
  display: block;
  width: 100%;
  height: 340px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.contact-section {
  background: var(--dark);
  color: white;
}
.contact-section .eyebrow {
  background: #b08d5710;
  color: #c9a367;
}
.contact-section .button-outline,
.contact-section input,
.contact-section textarea,
.contact-section select {
  border-color: #35322d;
}
.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: #c8c3ba;
}
.contact-section select option {
  background: var(--dark);
  color: white;
}
.contact-section p {
  max-width: 550px;
}
/* EDIT FOOTER LOGO / COMPANY NAME / SOCIAL LINKS / PHONE / ADDRESS in BUSINESS. */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 64px 0 80px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 3.35fr) repeat(3, minmax(0, .8fr)) minmax(0, 2.05fr);
  gap: 36px;
}
.footer-grid > div { min-width: 0; }
.footer-email { position: relative; padding-left: 30px; }
.footer-email > span { position: absolute; left: 0; color: var(--gold); }
.footer-email .icon { width: 19px; height: 19px; }
.footer-email + dd { padding-left: 30px; }
.site-footer h4 {
  font-size: 14px;
  margin: 0 0 22px;
}
.footer-grid > div > a:not(.brand):not(.button) {
  display: block;
  margin-bottom: 12px;
}
.site-footer p {
  margin-bottom: 22px;
}
.site-footer .brand {
  font-size: 30px;
}
.site-footer dl {
  font-size: 14px;
  margin-top: 26px;
}
.site-footer dt {
  margin-top: 12px;
}
.site-footer dd {
  overflow-wrap: anywhere;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.social-links a {
  display: grid;
  place-items: center;
  min-width: 24px;
  min-height: 32px;
}
.social-links .icon {
  width: 19px;
  height: 19px;
}
.footer-bottom {
  border-top: 1px solid #35322d;
  margin-top: 120px;
  padding-top: 32px;
  font-size: 12px;
}
.noscript-note {
  position: fixed;
  bottom: 0;
  padding: 15px;
  background: white;
  color: black;
  width: 100%;
  text-align: center;
}
/* EDIT TABLET BREAKPOINT: navigation collapses before links become crowded. */
@media (min-width: 1600px) {
  .hero {
    min-height: 850px;
  }
}
@media (max-width: 1100px) {
  :root {
    --gutter: 26px;
  }
  .section {
    padding: 76px 0;
  }
  .split {
    gap: 48px;
  }
  .site-header nav {
    gap: 20px;
  }
  .site-header nav > a:not(.button),
  .site-header .button {
    font-size: 14px;
  }
  .nav-wrap {
    padding-inline: 26px;
  }
  .product-content {
    padding: 22px;
    min-height: 245px;
  }
  .product-card h3,
  .category-content h3,
  .info-card h3 {
    font-size: 25px;
  }
  .carousel-track {
    gap: 24px;
    grid-auto-columns: calc((100% - 72px) / 4);
  }
  .three-grid {
    gap: 24px;
  }
  .info-card {
    padding: 25px;
  }
  .footer-grid {
    gap: 24px;
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2/5;
  }
  .hero h1 {
    max-width: 650px;
  }
  .hero p {
    max-width: 450px;
  }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #555;
    border-radius: 10px;
    color: white;
  }
  .menu-toggle span {
    height: 2px;
    width: 22px;
    background: currentColor;
  }
  .nav-wrap {
    position: relative;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 5;
    background: var(--dark);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-top: 1px solid #35322d;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav a {
    padding: 12px;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .carousel-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
  .carousel-track.expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split {
    gap: 32px;
  }
  .product-content {
    min-height: 245px;
  }
  .section-heading {
    margin-bottom: 48px;
  }
  .about {
    padding: 85px 0;
  }
  .hero {
    min-height: 700px;
    max-height: none;
  }
  .hero-image {
    object-position: 58% center;
  }
  .category-content {
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    margin-top: 60px;
  }
}
/* EDIT MOBILE BREAKPOINT: stacked content, swipeable products and comfortable touch targets. */
@media (max-width: 600px) {
  :root {
    --gutter: 20px;
    --radius: 18px;
  }
  body {
    font-size: 16px;
  }
  .section {
    padding: 64px 0;
  }
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 26px;
  }
  .nav-wrap {
    min-height: 72px;
    padding: 12px 20px;
  }
  .brand {
    font-size: 30px;
  }
  .hero {
    min-height: calc(100svh - 72px);
  }
  .hero-content {
    padding-block: 75px;
  }
  .hero-image {
    object-position: 57% center;
  }
  .hero:after {
    background: rgba(0, 0, 0, 0.53);
  }
  .hero h1 {
    margin-top: 18px;
  }
  .hero h1 br {
    display: none;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero .actions {
    gap: 10px;
  }
  .button {
    padding: 12px 17px;
  }
  .actions {
    margin-top: 28px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about .about-image {
    aspect-ratio: 1.08;
  }
  .about h2 br {
    display: none;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .category-grid,
  .three-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .category-content {
    padding: 24px;
  }
  .category-content h3 {
    font-size: 28px;
  }
  .category-content p,
  .product-card p,
  .info-card p {
    font-size: 16px;
  }
  .carousel-track {
    grid-auto-columns: 87%;
    gap: 18px;
  }
  .product-card h3 {
    font-size: 30px;
  }
  .product-content {
    padding: 26px;
    min-height: 260px;
  }
  .carousel-track.expanded {
    grid-template-columns: 1fr;
  }
  .carousel-controls {
    margin-top: 16px;
  }
  .arrow {
    width: 44px;
    height: 44px;
  }
  .view-all {
    margin-top: 34px;
  }
  .eyebrow {
    font-size: 12px;
  }
  .info-card {
    padding: 28px;
  }
  .info-card h3 {
    font-size: 27px;
  }
  .map-block {
    margin-top: 50px;
  }
  .map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  #store-map {
    height: 300px;
  }
  .quote-form input,
  .quote-form textarea,
  .quote-form select {
    font-size: 16px;
  }
  .contact-section .split > img {
    margin-top: 0;
  }
  .site-footer {
    padding: 50px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    margin-top: 48px;
    line-height: 1.8;
  }
  .footer-grid h4 {
    margin-bottom: 18px;
  }
  .footer-grid > div > a:not(.brand):not(.button) {
    min-height: 32px;
  }
  .centered {
    text-align: left;
  }
  .centered p {
    margin-inline: 0;
  }
}
/* ACCESSIBILITY: respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
