```css
/* ==========================================================================
   Measure Bakery — stylesheet
   Palette: warm cream + honey crust, deep pine for depth, cocoa ink.
   Type: Fraunces (display) + Inter (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour system */
  --cream: #fbf6ee;
  --paper: #fffdf9;
  --tint: #f2e7d8;
  --ink: #241c17;
  --ink-muted: #5b4c42;
  --pine: #1d5446;
  --pine-dark: #143d33;
  --pine-deep: #102c26;
  --honey: #b4652a;
  --honey-deep: #8b4711;
  --honey-light: #e0a45f;

  /* Lines & shadows */
  --line: rgba(36, 28, 23, 0.12);
  --line-strong: rgba(36, 28, 23, 0.24);
  --line-light: rgba(255, 249, 240, 0.16);
  --shadow-sm: 0 1px 2px rgba(36, 28, 23, 0.05),
    0 8px 20px -14px rgba(36, 28, 23, 0.35);
  --shadow-md: 0 2px 4px rgba(36, 28, 23, 0.05),
    0 20px 44px -26px rgba(36, 28, 23, 0.45);

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --fs-lg: clamp(1.4rem, 1.2rem + 0.9vw, 1.75rem);
  --fs-xl: clamp(1.75rem, 1.35rem + 1.7vw, 2.5rem);
  --fs-2xl: clamp(2.35rem, 1.5rem + 3.6vw, 4.1rem);

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;

  /* Layout */
  --container: 1100px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(3.75rem, 9vw, 7rem);
  --header-h: 72px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dd {
  margin: 0;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 3px;
  border-radius: 4px;
}

.why-choose-us :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--honey-light);
}

/* Shared layout helpers ---------------------------------------------------- */
.section-inner,
.header-inner,
.footer-inner,
.footer-copyright {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --------------------------------------------------------------------------
   3. Skip link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: #fff9f0;
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 246, 238, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

/* Wordmark ---------------------------------------------------------------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}

.wordmark-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--tint);
  border: 1px solid var(--line);
  color: var(--pine);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.wordmark:hover .wordmark-mark {
  background: var(--pine);
  color: var(--honey-light);
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.wordmark-suffix {
  margin-top: 0.16rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

/* Hamburger --------------------------------------------------------------- */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--pine);
  background: rgba(29, 84, 70, 0.06);
}

.nav-toggle-bars {
  display: grid;
  gap: 4px;
  width: 18px;
}

.nav-toggle-bar {
  display: block;
  height: 1.5px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Mobile navigation panel ------------------------------------------------- */
.primary-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  padding-inline: var(--gutter);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 26px 44px -30px rgba(36, 28, 23, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-header.nav-open .primary-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list {
  display: flex;
  flex-direction: column;
  padding-block: 0.35rem;
}

.nav-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.nav-link {
  position: relative;
  display: block;
  padding: 0.95rem 0.15rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: clamp(1rem, 2.6vw, 2rem);
    padding-block: 0;
  }

  .nav-item:not(:last-child) {
    border-bottom: 0;
  }

  .nav-link {
    padding: 0.4rem 0.1rem;
    font-size: var(--fs-sm);
  }

  .nav-link:hover::after,
  .nav-link:focus-visible::after {
    transform: scaleX(1);
  }
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease,
    border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.button-primary {
  background: var(--pine);
  color: #fffdf9;
  box-shadow: 0 12px 24px -16px rgba(29, 84, 70, 0.9);
}

.button-primary:hover {
  background: var(--pine-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -16px rgba(29, 84, 70, 0.95);
}

.button-ghost {
  background: rgba(255, 253, 249, 0.6);
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--cream);
  background-image: radial-gradient(
      88% 68% at 88% 2%,
      rgba(180, 101, 42, 0.2),
      rgba(180, 101, 42, 0) 62%
    ),
    radial-gradient(
      78% 62% at 0% 98%,
      rgba(29, 84, 70, 0.16),
      rgba(29, 84, 70, 0) 58%
    );
  border-bottom: 1px solid var(--line);
}

/* Ruler-tick band along the bottom of the hero */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22px;
  border-top: 1px solid rgba(36, 28, 23, 0.14);
  background-image: repeating-linear-gradient(
      to right,
      rgba(36, 28, 23, 0.22) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      to right,
      rgba(36, 28, 23, 0.1) 0 1px,
      transparent 1px 5.5px
    );
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 12px, 100% 7px;
  background-position: bottom left, bottom left;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 5.5rem) var(--gutter) clamp(4.5rem, 10vw, 7rem);
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

.hero-title {
  max-width: 22ch;
  font-size: var(--fs-2xl);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero-title-accent {
  display: block;
  font-weight: 400;
  font-style: italic;
  color: var(--honey);
}

.hero-lede {
  max-width: 54ch;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  font-size: var(--fs-md);
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) clamp(2rem, 6vw, 3.5rem);
  max-width: 660px;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}

.hero-fact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-fact-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-fact-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   7. Section furniture
   -------------------------------------------------------------------------- */
.section-eyebrow {
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

.section-title {
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
}

.section-lede {
  max-width: 62ch;
  margin-top: var(--space-4);
  font-size: var(--fs-md);
  color: var(--ink-muted);
}

.section-head {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}

.section-head .section-lede {
  margin-inline: auto;
}

.section-head-left {
  margin-inline: 0;
  text-align: left;
}

.section-head-left .section-lede {
  margin-inline: 0;
}

/* --------------------------------------------------------------------------
   8. About
   -------------------------------------------------------------------------- */
.about {
  padding-block: var(--section-pad);
  background: var(--paper);
}

.about-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.about-copy p + p {
  margin-top: var(--space-4);
}

.about-copy p:not(.section-lede) {
  color: var(--ink-muted);
}

.about-panel {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-panel-title {
  font-size: 1.25rem;
}

.about-list {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.about-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
}

.about-icon {
  margin-top: 0.15rem;
  color: var(--honey-deep);
  flex: none;
}

.about-item-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

.about-item-text {
  margin-top: 0.3rem;
  font-size: var(--fs-sm);
  color: var(--ink-muted);
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

/* --------------------------------------------------------------------------
   9. Services / offerings
   -------------------------------------------------------------------------- */
.services {
  padding-block: var(--section-pad);
  background: var(--tint);
  border-block: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 101, 42, 0.5);
  box-shadow: var(--shadow-md);
}

.service-icon-wrap {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(29, 84, 70, 0.08);
  border: 1px solid rgba(29, 84, 70, 0.16);
  color: var(--pine);
  flex: none;
}

.service-title {
  font-size: 1.2rem;
}

.service-text {
  font-size: var(--fs-sm);
  color: var(--ink-muted);
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   10. Why choose us
   -------------------------------------------------------------------------- */
.why-choose-us {
  padding-block: var(--section-pad);
  color: #efe7db;
  background-color: var(--pine-deep);
  background-image: radial-gradient(
      80% 60% at 100% 0%,
      rgba(224, 164, 95, 0.14),
      rgba(224, 164, 95, 0) 62%
    ),
    radial-gradient(
      70% 55% at 0% 100%,
      rgba(29, 84, 70, 0.5),
      rgba(29, 84, 70, 0) 60%
    );
}

.why-choose-us .section-eyebrow {
  color: var(--honey-light);
}

.why-choose-us .section-title {
  max-width: 24ch;
  color: #fff9f0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(255, 249, 240, 0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  background: rgba(255, 249, 240, 0.08);
  border-color: rgba(224, 164, 95, 0.4);
}

.why-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--honey-light);
}

.why-title {
  font-size: 1.15rem;
  color: #fff9f0;
}

.why-text {
  font-size: var(--fs-sm);
  color: rgba(239, 231, 219, 0.82);
}

@media (min-width: 720px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
  }
}

@media (min-width: 1080px) {
  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   11. Contact
   -------------------------------------------------------------------------- */
.contact {
  padding-block: var(--section-pad);
  background: var(--cream);
}

.contact-inner {
  display: grid;
  gap: clamp(2.25rem, 6vw, 3.5rem);
}

.contact-details {
  display: grid;
  gap: var(--space-5);
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
}

.contact-detail {
  display: grid;
  gap: 0.3rem;
}

.contact-detail-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

.contact-detail-value {
  font-size: var(--fs-sm);
  color: var(--ink);
  max-width: 40ch;
}

.social-list {
  display: flex;
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: background-color 0.22s ease, color 0.22s ease,
    border-color 0.22s ease, transform 0.22s ease;
}

.social-link:hover {
  background: var(--pine);
  border-color: var(--pine);
  color: #fff9f0;
  transform: translateY(-2px);
}

/* Form -------------------------------------------------------------------- */
.contact-form {
  display: grid;
  gap: var(--space-5);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(91, 76, 66, 0.6);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(29, 84, 70, 0.15);
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 1.25rem;
  font-size: var(--fs-sm);
  color: var(--pine);
}

@media (min-width: 520px) {
  .form-submit {
    width: auto;
    justify-self: start;
  }
}

@media (min-width: 940px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 238, 0.78);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
}

.footer-name {
  font-family: var(--font-display