:root {
  --color-blush: #e8bcc1;
  --color-rose: #dfa4ac;
  --color-cream: #fff8f4;
  --color-warm-white: #faf7f5;
  --color-sage: #aab3a4;
  --color-chocolate: #4b3636;
  --color-charcoal: #5a5252;
  --color-white: #ffffff;
  --color-border: #eadcdb;
  --color-focus: #7f4d57;
  --color-berry: #bb3e5e;
  --shadow-soft: 0 16px 40px rgba(75, 54, 54, 0.12);
  --radius: 8px;
  --container: 1120px;
  --section-y: clamp(3rem, 7vw, 5rem);
  --anchor-offset: 4.7rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

html,
body {
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-warm-white);
  color: var(--color-charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--color-blush);
  color: var(--color-chocolate);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-chocolate);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  max-width: 12ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5.8vw, 4.75rem);
}

h2 {
  max-width: 13ch;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.32rem;
}

p {
  margin-inline: auto;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}

.container {
  width: calc(100% - 2rem);
  max-width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding-block: var(--section-y);
  scroll-margin-top: var(--anchor-offset);
}

.section-tint {
  background: var(--color-cream);
}


[data-load-component] {
  --skeleton-height: clamp(9rem, 18vw, 14rem);
  --skeleton-width: var(--container);
  position: relative;
}

#home[data-load-component] {
  --skeleton-height: clamp(20rem, 42vw, 31rem);
}

#cakes[data-load-component],
#gallery[data-load-component] {
  --skeleton-height: clamp(16rem, 33vw, 28rem);
}

#about[data-load-component],
#contact[data-load-component] {
  --skeleton-height: clamp(15rem, 28vw, 23rem);
}

#pricing[data-load-component],
#service-areas[data-load-component],
.hours-section[data-load-component],
.faq-section[data-load-component] {
  --skeleton-height: clamp(7rem, 15vw, 11rem);
}

html.is-loading [data-load-component] > .container {
  opacity: 0;
  visibility: hidden;
}

html.components-ready [data-load-component] > .container {
  animation: component-reveal 260ms ease both;
}

html.is-loading [data-load-component]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--skeleton-width));
  height: var(--skeleton-height);
  border: 1px solid rgba(234, 220, 219, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0)) 0 0 / 220% 100%,
    linear-gradient(135deg, rgba(255, 248, 244, 0.95), rgba(232, 188, 193, 0.34));
  box-shadow: 0 14px 32px rgba(75, 54, 54, 0.08);
  transform: translate(-50%, -50%);
  animation: skeleton-sweep 1.2s ease-in-out infinite;
  pointer-events: none;
}

html.is-loading .site-header {
  pointer-events: none;
}

@keyframes skeleton-sweep {
  from {
    background-position: 120% 0, 0 0;
  }

  to {
    background-position: -120% 0, 0 0;
  }
}

@keyframes component-reveal {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--color-chocolate);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(234, 220, 219, 0.9);
  background: rgba(250, 247, 245, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 0.75rem;
  color: var(--color-chocolate);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 1rem;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-chocolate);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: #7f4d57;
}

.hero {
  padding-block: clamp(1.1rem, 2.8vw, 2rem) clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255, 248, 244, 0.96), rgba(232, 188, 193, 0.28)),
    var(--color-warm-white);
}

.about-grid,
.contact-grid,
.split-layout,
.hours-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.84fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.about-grid > *,
.contact-grid > *,
.split-layout > *,
.hours-grid > * {
  min-width: 0;
}

.hero-copy {
  display: grid;
  grid-template-areas:
    "title logo"
    "lead empty"
    "actions empty";
  grid-template-columns: minmax(0, 1fr) clamp(13rem, 28vw, 22rem);
  align-items: center;
  column-gap: clamp(1rem, 4vw, 3.25rem);
  row-gap: 1.25rem;
  max-width: 74rem;
  margin-inline: auto;
  padding-block: 0;
  text-align: center;
}

.hero-title-area {
  grid-area: title;
  display: grid;
  justify-items: center;
  min-width: 0;
}

.hero-title-area h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(2.025rem, 5.22vw, 4.275rem);
}

.hero-copy .lead {
  grid-area: lead;
}

.hero-logo {
  grid-area: logo;
  display: grid;
  width: min(100%, 22rem);
  aspect-ratio: 1;
  justify-self: center;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: 0.55rem;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.18);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: #765461;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 64ch;
  margin-inline: auto;
  color: var(--color-charcoal);
  font-size: clamp(1.06rem, 2vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero .button-row {
  grid-area: actions;
  align-items: stretch;
  justify-content: center;
  max-width: 42rem;
  margin-inline: auto;
}

.hero .button {
  flex: 1 1 0;
  min-width: min(100%, 16rem);
  min-height: 5.1rem;
  padding: 1.2rem 1.65rem;
  font-size: 1.18rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: var(--color-chocolate);
  color: var(--color-white);
  box-shadow: 0 10px 22px rgba(75, 54, 54, 0.18);
}

.button-primary:hover {
  background: #382626;
}

.button-secondary {
  border-color: var(--color-rose);
  background: var(--color-white);
  color: var(--color-chocolate);
}

.button-secondary:hover {
  background: var(--color-cream);
}

.intro p,
.section-heading p,
.split-layout p,
.about-grid p,
.contact-grid p {
  max-width: 66ch;
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 1.75rem;
  text-align: center;
}

.service-ribbon {
  width: min(100%, 54rem);
  margin-inline: auto;
  overflow: hidden;
  border-block: 2px solid rgba(187, 62, 94, 0.28);
  background: linear-gradient(90deg, rgba(255, 248, 244, 0.78), #ffffff 22%, #ffffff 78%, rgba(255, 248, 244, 0.78));
  box-shadow: 0 10px 24px rgba(75, 54, 54, 0.07);
}

.service-ribbon-window {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.service-ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.15rem;
  padding-block: 0.34rem;
  animation: service-ribbon-scroll 20s linear infinite;
}

.service-ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: var(--color-chocolate);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.service-ribbon-item::before {
  content: "";
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
  background: var(--color-berry);
  -webkit-mask: url("assets/pointer-pin.svg") center / contain no-repeat;
  mask: url("assets/pointer-pin.svg") center / contain no-repeat;
}

@keyframes service-ribbon-scroll {
  to {
    transform: translateX(calc(-50% - 0.575rem));
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.service-card,
.price-list,
.contact-details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(75, 54, 54, 0.06);
}

.service-card {
  display: grid;
  grid-template-rows: 2.6rem 1fr;
  min-height: 8.25rem;
  align-content: start;
  padding: 0.65rem 0.8rem;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.service-card:hover {
  border-color: rgba(187, 62, 94, 0.35);
  box-shadow: 0 16px 30px rgba(75, 54, 54, 0.1);
  transform: translateY(-2px);
}

.service-card h3 {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.15;
}

.price-list {
  width: min(100%, 25rem);
  max-width: 25rem;
  margin-inline: auto;
  padding: 0.75rem 0.9rem;
}

.pricing-layout {
  grid-template-columns: minmax(0, 42rem);
  justify-content: center;
  align-items: start;
  gap: 1.25rem;
  text-align: center;
}

.price-item {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--color-border);
}

.price-item:first-child {
  padding-top: 0;
}

.price-item span {
  color: var(--color-chocolate);
  font-weight: 700;
}

.price-item strong {
  color: #6f4f57;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.price-message {
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 800;
}

.price-message a {
  color: var(--color-berry);
  text-decoration-color: rgba(187, 62, 94, 0.35);
  text-underline-offset: 0.22em;
}

.slogan-section {
  background: var(--color-chocolate);
  color: var(--color-white);
  text-align: center;
}

.slogan-inner {
  max-width: 780px;
}

.slogan-section .eyebrow {
  color: var(--color-blush);
}

.slogan-section h2 {
  max-width: 15ch;
  color: var(--color-white);
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.slogan-section p:not(.eyebrow) {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.about-grid {
  display: block;
}

.about-copy {
  max-width: 64rem;
  margin-inline: auto;
  text-align: left;
}

.about-copy h2,
.about-copy p,
.about-copy .eyebrow {
  margin-inline: 0;
}

.about-copy h2 {
  max-width: 14ch;
}

.about-copy p:not(.eyebrow) {
  max-width: 70ch;
  font-size: clamp(1.05rem, 1.45vw, 1.18rem);
  line-height: 1.68;
}

.portrait-card {
  float: left;
  display: block;
  width: clamp(11rem, 23vw, 17rem);
  margin: 0.2rem 1.6rem 0.95rem 0;
  color: var(--color-chocolate);
  text-align: center;
}

.portrait-frame {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  background: var(--color-cream);
}

.portrait-card img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.28);
  transform-origin: center center;
}

.gallery-stage {
  --gallery-card-width: clamp(14rem, 29vw, 20rem);
  --gallery-image-height: 460px;
  --gallery-card-height: 532px;
  position: relative;
  isolation: isolate;
  margin-inline: auto;
}

.gallery-carousel {
  display: grid;
  grid-auto-columns: var(--gallery-card-width);
  grid-auto-flow: column;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 1rem calc((100% - var(--gallery-card-width)) / 2) 1.5rem;
  scroll-padding-inline: calc((100% - var(--gallery-card-width)) / 2);
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-carousel:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.gallery-item {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  margin: 0;
  min-height: var(--gallery-card-height);
  border: 4px solid rgba(232, 188, 193, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 240, 241, 0.92)),
    var(--color-white);
  box-shadow: 0 12px 26px rgba(75, 54, 54, 0.08);
  opacity: 0.64;
  padding: 0.65rem;
  scroll-snap-align: center;
  text-align: center;
  transform: translateY(1.05rem) scale(0.88);
  transition: transform 260ms ease, opacity 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  width: 100%;
}

.gallery-item.is-active {
  border-color: rgba(187, 62, 94, 0.58);
  opacity: 1;
  box-shadow: 0 24px 46px rgba(75, 54, 54, 0.16), 0 0 0 8px rgba(232, 188, 193, 0.18);
  transform: translateY(0) scale(1);
}

.gallery-item:hover {
  border-color: rgba(187, 62, 94, 0.45);
  transform: translateY(0.55rem) scale(0.9);
}

.gallery-item.is-active:hover {
  transform: translateY(-3px) scale(1.01);
}

.gallery-item img {
  width: 100%;
  height: var(--gallery-image-height);
  max-height: 460px;
  border-radius: calc(var(--radius) - 4px);
  background: var(--color-warm-white);
  object-fit: contain;
  object-position: center;
}

.gallery-item figcaption {
  display: grid;
  min-height: 2.4rem;
  place-items: center;
  padding: 0 0.25rem 0.15rem;
}

.gallery-item span {
  color: var(--color-chocolate);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
}

.gallery-control {
  position: absolute;
  top: calc(1rem + (var(--gallery-image-height) / 2));
  z-index: 2;
  display: inline-grid;
  width: 3rem;
  min-height: 3rem;
  place-items: center;
  border: 2px solid rgba(187, 62, 94, 0.3);
  border-radius: 50%;
  background: rgba(252, 240, 241, 0.96);
  box-shadow: 0 12px 30px rgba(75, 54, 54, 0.14), inset 0 0 0 4px rgba(255, 255, 255, 0.65);
  color: var(--color-chocolate);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  animation: control-nudge 2.8s ease-in-out 2;
}

.gallery-control span {
  display: block;
  line-height: 1;
  transform: translateY(-0.08em);
}

.gallery-control:hover {
  border-color: rgba(187, 62, 94, 0.55);
  background: var(--color-blush);
  box-shadow: 0 16px 34px rgba(75, 54, 54, 0.18);
  transform: translateY(calc(-50% - 2px));
}

.gallery-control-prev {
  left: clamp(0.25rem, 2vw, 1.25rem);
}

.gallery-control-next {
  right: clamp(0.25rem, 2vw, 1.25rem);
}

@keyframes control-nudge {
  0%,
  100% {
    transform: translateY(-50%);
  }

  45% {
    transform: translateY(calc(-50% - 7px));
  }

  70% {
    transform: translateY(calc(-50% + 3px));
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  border-top: 3px solid var(--color-sage);
  padding-top: 1rem;
  text-align: center;
}

.steps span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-chocolate);
  color: var(--color-white);
  font-weight: 800;
  line-height: 1;
}

.steps p {
  margin-bottom: 0;
  color: var(--color-chocolate);
  font-weight: 700;
}

.hours-section {
  background: var(--color-white);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.hours-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(7.4rem, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.hours-list div {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-cream);
  padding: 0.8rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hours-list div:hover {
  border-color: rgba(187, 62, 94, 0.28);
  box-shadow: 0 12px 24px rgba(75, 54, 54, 0.08);
  transform: translateY(-2px);
}

.hours-list dt {
  color: var(--color-chocolate);
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  line-height: 1.25;
}

.faq-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(75, 54, 54, 0.06);
  overflow: hidden;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(187, 62, 94, 0.28);
  box-shadow: 0 16px 32px rgba(75, 54, 54, 0.09);
  transform: translateY(-2px);
}

.faq-list summary {
  display: flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--color-chocolate);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.12rem);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translate(-0.08rem, -0.02rem);
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: -3px;
}

.faq-list p {
  max-width: 58ch;
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--color-charcoal);
}

.contact-section {
  background: var(--color-cream);
}

.contact-details {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 31rem);
  justify-self: start;
  justify-items: stretch;
  padding: 1.25rem;
  color: var(--color-chocolate);
  font-style: normal;
  font-weight: 700;
  text-align: left;
}

.contact-card {
  display: grid;
  --contact-icon-size: 4.2rem;
  grid-template-columns: var(--contact-icon-size) minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  min-height: 5.85rem;
  gap: 0.95rem;
  border: 2px solid var(--color-chocolate);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--color-white), var(--color-cream) 58%, #f1ded6);
  box-shadow:
    0 7px 0 #d4beb2,
    0 16px 28px rgba(75, 54, 54, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  padding: 0.75rem 1rem 0.95rem 0.8rem;
  text-align: left;
  text-decoration: none;
  touch-action: manipulation;
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 9px 0 #d4beb2,
    0 20px 34px rgba(75, 54, 54, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-card:active {
  transform: translateY(5px);
  box-shadow:
    0 2px 0 #d4beb2,
    0 8px 18px rgba(75, 54, 54, 0.14),
    inset 0 2px 5px rgba(75, 54, 54, 0.1);
}

.contact-card strong {
  display: block;
  color: var(--color-chocolate);
  line-height: 1.2;
}

.contact-card > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-icon {
  display: inline-grid;
  width: var(--contact-icon-size);
  min-width: var(--contact-icon-size);
  height: var(--contact-icon-size);
  place-items: center;
  background: var(--color-cream);
  border-radius: var(--radius);
  filter: drop-shadow(0 3px 3px rgba(75, 54, 54, 0.15));
  overflow: hidden;
}

.contact-icon img {
  width: 2.95rem;
  height: 2.95rem;
  border-radius: 0;
  object-fit: contain;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-chocolate);
  color: var(--color-white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.5rem;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  font-weight: 800;
}

.error-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 248, 244, 0.98), rgba(232, 188, 193, 0.28)),
    var(--color-warm-white);
}

.error-shell {
  width: min(100%, 42rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 5vw, 2.5rem);
}

.error-shell img {
  width: 7rem;
  height: 7rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  object-fit: cover;
}

.error-shell h1 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 7vw, 4rem);
}

.error-shell p:not(.eyebrow) {
  max-width: 58ch;
}

@media (max-width: 980px) {
  .contact-grid,
  .split-layout,
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: clamp(9rem, 34vw, 16rem);
  }

  .portrait-card {
    width: clamp(8.5rem, 21vw, 12.5rem);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-stage {
    --gallery-card-width: clamp(13.5rem, 45vw, 18rem);
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --anchor-offset: 7.4rem;
  }

  .container {
    width: calc(100% - 1.25rem);
    max-width: calc(100% - 1.25rem);
  }

  .header-inner {
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    width: 100%;
    gap: 0.05rem 0.9rem;
  }

  .site-nav a {
    font-size: 0.88rem;
    justify-content: center;
  }

  .brand img {
    width: 2.55rem;
    height: 2.55rem;
  }

  .section-heading p {
    width: min(100%, 34ch);
  }

  h1 {
    max-width: 12ch;
  }

  h2 {
    max-width: 14ch;
  }

  .hero-copy {
    grid-template-areas:
      "title logo"
      "lead lead"
      "actions actions";
    grid-template-columns: minmax(0, min(60vw, 15rem)) clamp(8.5rem, 34vw, 10rem);
    align-items: center;
    justify-content: center;
    justify-items: center;
    column-gap: 0.7rem;
    row-gap: 0.75rem;
    width: 100%;
    max-width: none;
    padding-block: 0;
    text-align: center;
  }

  .hero {
    padding-block: 1rem 2rem;
  }

  .hero-logo {
    width: 100%;
    align-self: start;
    justify-self: center;
    margin-top: 2.35rem;
    padding: 0.28rem;
    transform: none;
  }

  .hero-title-area {
    justify-items: center;
  }

  .hero-title-area .eyebrow {
    font-size: 0.68rem;
  }

  .hero-title-area h1 {
    max-width: 10.5ch;
    margin-inline: auto;
    font-size: clamp(1.85rem, 7.35vw, 2.42rem);
  }

  .lead {
    max-width: 34ch;
    margin-inline: auto;
  }

  .intro p {
    width: min(100%, 32ch);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero .button-row {
    justify-content: center;
    max-width: none;
  }

  .hero .button {
    min-width: 100%;
    min-height: 5rem;
    font-size: 1.14rem;
  }

  .about-copy {
    text-align: left;
  }

  .about-copy h2 {
    max-width: 12ch;
  }

  .about-copy p,
  .about-copy .eyebrow {
    margin-inline: 0;
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .portrait-card {
    float: left;
    width: clamp(8.25rem, 38vw, 10rem);
    gap: 0.55rem;
    margin: 0.15rem 1rem 0.65rem 0;
  }

  .portrait-frame {
    border-radius: 50%;
  }

  .portrait-card img {
    object-fit: cover;
    object-position: center center;
  }

  .slogan-section h2 {
    max-width: 9.5ch;
    font-size: 2.25rem;
  }

  .slogan-section p:not(.eyebrow) {
    width: min(100%, 32ch);
  }

  .service-grid,
  .steps,
  .hours-list {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    --gallery-card-width: min(72vw, 18rem);
    --gallery-image-height: min(360px, 82vw);
    --gallery-card-height: calc(var(--gallery-image-height) + 4.35rem);
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .service-ribbon-track {
    transform: none;
    animation: none;
  }

  html.is-loading [data-load-component]::before {
    animation: none;
  }

  .gallery-control {
    animation: none;
  }
}
