:root {
  --ink: #261b1f;
  --muted: #665b5f;
  --paper: #fffaf2;
  --white: #ffffff;
  --plum: #4e1745;
  --plum-deep: #2d1029;
  --saffron: #f6b719;
  --terra: #c74724;
  --green: #27634a;
  --green-soft: #e8f2e3;
  --line: rgba(38, 27, 31, 0.14);
  --shadow: 0 18px 45px rgba(38, 27, 31, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

address {
  color: var(--muted);
  font-style: normal;
  margin: 0 0 1.3rem;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.7rem 1rem;
  clip: auto;
  background: var(--saffron);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 78px;
  padding: 0.85rem max(1.2rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 250, 242, 0.68);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(38, 27, 31, 0.05);
}

.site-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(38, 27, 31, 0.08);
  background: linear-gradient(90deg, rgba(246, 183, 25, 0.18), rgba(214, 83, 36, 0.12));
  color: var(--plum-deep);
  font-weight: 700;
}

.site-banner-label {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--plum);
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.site-banner p {
  margin: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 260px;
  color: var(--plum);
  text-decoration: none;
}

.brand-logo {
  width: 84px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--plum);
  color: var(--white);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.language-switcher select {
  min-height: 42px;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--plum);
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: 8rem max(1.2rem, calc((100vw - var(--max)) / 2)) 4.2rem;
  color: var(--white);
  isolation: isolate;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(31, 15, 25, 0.84) 0%, rgba(31, 15, 25, 0.58) 44%, rgba(31, 15, 25, 0.12) 100%),
    linear-gradient(0deg, rgba(31, 15, 25, 0.46), rgba(31, 15, 25, 0.08));
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow,
.kicker {
  margin: 0 0 0.85rem;
  color: var(--saffron);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.proof-band h2,
.contact-section h2,
.quote-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: 4.8rem;
}

.hero-subtitle {
  margin: 0.75rem 0 0;
  color: var(--saffron);
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-intro {
  max-width: 620px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button-primary {
  background: var(--terra);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--plum);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--plum);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--terra);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.2rem 1.2rem;
}

.compact-top {
  padding-top: 3.4rem;
}

.services-section {
  padding-top: 2.4rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.services-section .section-heading {
  margin-bottom: 1.1rem;
}

.section-heading h2,
.section h2,
.contact-section h2,
.proof-band h2 {
  margin: 0;
  font-size: 2.65rem;
}

.section-heading p,
.section p,
.contact-section p,
.proof-band p {
  color: var(--muted);
  font-size: 1.03rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 3.4rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -2.4rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 1.2rem;
  gap: 0;
}

.stats-strip div {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(38, 27, 31, 0.08);
}

.stats-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.stats-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.stats-strip strong {
  display: block;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 800;
}

.image-stack,
.portrait-card,
.review-tile {
  margin: 0;
}

.image-stack {
  position: relative;
}

.image-stack img,
.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.warm-band {
  max-width: none;
  padding-left: max(1.2rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1.2rem, calc((100vw - var(--max)) / 2));
  background: #fff1cf;
  border-top: 1px solid rgba(199, 71, 36, 0.16);
  border-bottom: 1px solid rgba(199, 71, 36, 0.16);
}

.three-grid,
.feature-grid,
.recipe-grid,
.review-grid,
.google-review-grid {
  display: grid;
  gap: 1.2rem;
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid,
.recipe-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.info-card,
.feature-card,
.recipe-card,
.note-card,
.conversion-panel,
.service-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(38, 27, 31, 0.08);
}

.info-card {
  padding: 1.35rem;
}

.info-card h3,
.feature-card h3,
.recipe-card h2,
.service-card h2 {
  margin: 0 0 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

.info-card p,
.feature-card p,
.recipe-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card,
.recipe-card {
  overflow: hidden;
}

.feature-card-media {
  position: relative;
}

.feature-card img,
.recipe-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card-credit {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(38, 27, 31, 0.8);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.feature-card > div,
.recipe-card-body {
  padding: 1.1rem;
}

.workshop-gallery-section {
  display: grid;
  gap: 1.4rem;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 1rem;
}

.photo-gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--plum-deep);
  box-shadow: 0 18px 40px rgba(38, 27, 31, 0.12);
}

.photo-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-gallery-card:hover img {
  transform: scale(1.03);
}

.photo-gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 0.95rem;
  background: linear-gradient(180deg, rgba(18, 11, 15, 0), rgba(18, 11, 15, 0.88));
  color: var(--white);
}

.photo-gallery-tag {
  width: max-content;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(246, 183, 25, 0.96);
  color: var(--plum-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-gallery-card strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.photo-gallery-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.client-strip-section {
  display: grid;
  gap: 1.4rem;
}

.client-logo-marquee {
  overflow: hidden;
}

.client-logo-track {
  display: flex;
  width: max-content;
  gap: 1.2rem;
  animation: logo-marquee-left 44s linear infinite;
  will-change: transform;
}

.client-logo-track:hover {
  animation-play-state: paused;
}

.client-logo-card {
  flex: 0 0 12rem;
  width: 12rem;
  height: 9rem;
  min-height: 9rem;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.15rem 1.15rem;
  border: 1px solid rgba(38, 27, 31, 0.08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(38, 27, 31, 0.06);
}

.client-logo-card img {
  max-width: 100%;
  max-height: calc(100% - 0.25rem);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92);
}

.photo-gallery-card-1 {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 330px;
}

.photo-gallery-card-2 {
  grid-column: span 4;
}

.photo-gallery-card-3 {
  grid-column: span 3;
}

.photo-gallery-card-4,
.photo-gallery-card-5,
.photo-gallery-card-6 {
  grid-column: span 4;
}

.photo-gallery-card-7,
.photo-gallery-card-8,
.photo-gallery-card-9 {
  grid-column: span 3;
}

.photo-gallery-card-10,
.photo-gallery-card-11 {
  grid-column: span 6;
}

.proof-band,
.quote-band,
.contact-section {
  max-width: none;
  margin: 0;
  padding-left: max(1.2rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1.2rem, calc((100vw - var(--max)) / 2));
}

.proof-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--plum);
  color: var(--white);
}

.proof-band p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-band .kicker {
  color: var(--saffron);
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.chip {
  min-height: 40px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.chip:hover,
.chip.is-active {
  background: var(--green);
  color: var(--white);
}

.recipe-card.is-hidden {
  display: none;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.tag-row span {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.conversion-panel {
  padding: 1rem;
}

.conversion-panel div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.conversion-panel div:last-child {
  border-bottom: 0;
}

.conversion-panel span {
  color: var(--muted);
  font-weight: 800;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  height: 400px;
  overflow: hidden;
}

.service-card-media {
  position: relative;
  height: 100%;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.service-card-credit {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(38, 27, 31, 0.8);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.service-content {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.35rem 1.25rem;
}

.service-content ul {
  display: grid;
  gap: 0.32rem;
  margin: 0.7rem 0 0.85rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.service-content .button {
  margin-top: 0.4rem;
  width: fit-content;
}

.price {
  display: inline-flex;
  margin: 0 0 0.8rem;
  color: var(--terra);
  font-weight: 900;
}

.note-card {
  padding: 1.25rem;
  background: var(--green);
  color: var(--white);
}

.note-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.note-card span {
  color: rgba(255, 255, 255, 0.82);
}

.review-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f7f4ef;
}

.review-empty {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.1rem;
  color: var(--muted);
}

.google-reviews-section {
  display: grid;
  gap: 1.4rem;
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
}

.google-reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: 1.4rem;
  align-items: stretch;
}

.review-summary-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(199, 71, 36, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(246, 183, 25, 0.28), transparent 40%),
    linear-gradient(180deg, #fff, #fff8ea);
  box-shadow: 0 18px 45px rgba(38, 27, 31, 0.09);
}

.review-score {
  display: grid;
  gap: 0.2rem;
}

.review-score-number {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.review-score-label {
  color: var(--muted);
  font-weight: 800;
}

.review-score-count {
  color: var(--muted);
  font-size: 0.96rem;
}

.review-score-count strong {
  color: var(--plum);
}

.review-summary-caption {
  display: grid;
  gap: 0.2rem;
}

.review-summary-caption strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.review-summary-caption span {
  color: var(--muted);
  font-size: 0.95rem;
}

.google-review-marquee {
  overflow: hidden;
  padding: 0.2rem 0;
}

.google-review-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: review-marquee-left 60s linear infinite;
  will-change: transform;
}

.google-review-track:hover {
  animation-play-state: paused;
}

.google-review-track .google-review-card {
  flex: 0 0 22rem;
  width: 22rem;
}

.google-reviews-section .section-heading p strong {
  color: var(--plum);
}

.google-review-note {
  margin-top: 0.45rem;
}

.google-review-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(38, 27, 31, 0.09);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(246, 183, 25, 0.08), transparent 30%),
    var(--white);
  box-shadow: 0 16px 35px rgba(38, 27, 31, 0.08);
  align-content: start;
  justify-content: start;
  min-height: 18rem;
}

.google-review-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.google-review-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--plum);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.google-review-head-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 0.2rem;
}

.google-review-head-copy strong {
  font-size: 1rem;
  line-height: 1.15;
}

.google-review-source {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.google-review-stars {
  flex: 0 0 auto;
  color: var(--saffron);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.google-review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes review-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes logo-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.calendar-section {
  display: grid;
  gap: 2rem;
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.75fr);
  gap: 1.2rem;
  align-items: start;
}

.calendar-frame,
.calendar-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.calendar-frame {
  min-height: 560px;
  overflow: hidden;
}

.calendar-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.calendar-placeholder {
  display: grid;
  align-content: center;
  gap: 0.6rem;
  min-height: 560px;
  padding: 1.4rem;
  color: var(--muted);
}

.calendar-placeholder strong,
.calendar-panel h3 {
  margin: 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.calendar-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.calendar-panel p {
  margin: 0;
}

.booking-form {
  display: grid;
  gap: 0.9rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 900;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(246, 183, 25, 0.38);
  border-color: var(--terra);
}

.portrait-card img {
  aspect-ratio: 3 / 4;
}

blockquote {
  margin: 1.4rem 0 0;
  padding: 1rem 1.2rem;
  border-left: 5px solid var(--terra);
  background: var(--white);
  border-radius: 0 8px 8px 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.quote-band {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--plum-deep);
  color: var(--white);
}

.quote-band h2 {
  max-width: 980px;
  margin: 0 0 1rem;
  font-size: 2.1rem;
}

.quote-band p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 3rem;
  align-items: start;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--green-soft);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.contact-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(246, 183, 25, 0.38);
  border-color: var(--terra);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, 1fr);
  gap: 2rem;
  padding: 3.4rem max(1.2rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.site-footer > .footer-copy {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--saffron);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a[aria-current="page"] {
  color: var(--saffron);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-brand-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-brand-main {
  width: min(200px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-trust-icon {
  width: 64px;
  height: auto;
  object-fit: contain;
  margin-top: 0.2rem;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-phone {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--saffron);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 3.4rem;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .split,
  .contact-section,
  .service-card {
    grid-template-columns: 1fr;
  }

  .google-reviews-hero {
    grid-template-columns: 1fr;
  }

  .three-grid,
  .feature-grid,
  .recipe-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .google-review-track .google-review-card {
    flex-basis: 18rem;
    width: 18rem;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .photo-gallery-card-1 {
    grid-column: 1 / -1;
  }

  .photo-gallery-card-2,
  .photo-gallery-card-3,
  .photo-gallery-card-4,
  .photo-gallery-card-5,
  .photo-gallery-card-6,
  .photo-gallery-card-7,
  .photo-gallery-card-8,
  .photo-gallery-card-9,
  .photo-gallery-card-10,
  .photo-gallery-card-11 {
    grid-column: auto;
  }

  .google-review-grid > .google-review-card,
  .google-review-grid > .google-review-card:nth-child(4),
  .google-review-grid > .google-review-card:nth-child(5) {
    grid-column: auto;
  }

  .calendar-layout {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: auto;
  }

  .service-card-media img {
    min-height: 260px;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 40px;
    height: auto;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 3.2rem;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .proof-band {
    align-items: stretch;
    flex-direction: column;
  }

  .google-reviews-hero {
    gap: 1rem;
  }

  .stats-strip,
  .three-grid,
  .feature-grid,
  .recipe-grid,
  .review-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .google-review-track .google-review-card {
    flex-basis: 16.5rem;
    width: 16.5rem;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .photo-gallery-card-1,
  .photo-gallery-card-2,
  .photo-gallery-card-3,
  .photo-gallery-card-4,
  .photo-gallery-card-5,
  .photo-gallery-card-6,
  .photo-gallery-card-7,
  .photo-gallery-card-8,
  .photo-gallery-card-9,
  .photo-gallery-card-10,
  .photo-gallery-card-11 {
    grid-column: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 74px;
    height: auto;
  }

  .stats-strip div,
  .stats-strip div:first-child,
  .stats-strip div:last-child {
    border-radius: 8px;
  }

  .calendar-frame,
  .calendar-placeholder {
    min-height: 480px;
  }

  .section,
  .contact-section,
  .proof-band,
  .quote-band {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .section-heading h2,
  .section h2,
  .contact-section h2,
  .proof-band h2 {
    font-size: 2rem;
  }

  .review-summary-panel {
    padding: 1rem;
  }

  .button {
    width: 100%;
  }

  .conversion-panel div {
    display: grid;
    gap: 0.15rem;
  }
}
