@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/caveat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23000' filter='url(%23n)' opacity='.5' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button,
select,
summary {
  cursor: pointer;
}
button {
  border-radius: 0;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
}
figure,
p {
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
}
h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.13;
  letter-spacing: -1.5px;
}
h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.6px;
}
em {
  font-weight: 500;
  color: var(--pink);
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 5px;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 90px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  z-index: 30;
}
.skip-link:focus {
  top: 12px;
}
.announcement {
  background: var(--blue);
  color: var(--paper);
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 10px;
  letter-spacing: 0.7px;
  padding: 5px 20px;
  text-align: center;
}
.announcement span {
  color: var(--yellow);
  font-size: 16px;
}
.site-header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 32px;
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--blue);
  padding: 3px 0 9px;
  flex-shrink: 0;
}
.wordmark-name {
  display: flex;
  align-items: center;
  font: 600 68px/0.8 var(--font-hand);
  letter-spacing: -4px;
}
.wordmark-name svg {
  width: 30px;
  height: 30px;
  color: var(--pink);
  margin: 7px 0 0 5px;
}
.wordmark-tagline {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-right: 23px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
}
.navigation a {
  padding-block: 12px;
}
.navigation a:not(.nav-contact):hover {
  color: var(--pink);
}
.navigation .nav-contact {
  border: 1px solid var(--ink);
  padding: 11px 20px;
  display: flex;
  gap: 24px;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-contact:hover {
  background: var(--ink);
  color: var(--paper);
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.social-link svg {
  width: 21px;
  height: 21px;
}
.social-link:hover {
  color: var(--pink);
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding-top: 46px;
  padding-bottom: 54px;
}
.hero-copy {
  padding-block: 14px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}
.tiny-flower {
  color: var(--pink);
  font-size: 23px;
  line-height: 1;
}
h1 {
  font-size: clamp(65px, 6.1vw, 88px);
  line-height: 1.02;
  letter-spacing: -3.5px;
}
h1 em {
  white-space: nowrap;
}
.hero-description {
  max-width: 385px;
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 16px 24px;
  min-height: 52px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button svg {
  width: 22px;
  height: 22px;
}
.button-blue {
  background: var(--blue);
  color: var(--paper);
}
.button-blue:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 12px;
  font-weight: 600;
}
.text-link:hover {
  color: var(--pink);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  font: 600 23px/1.2 var(--font-hand);
  transform: rotate(-4deg);
  transform-origin: left;
}
.hero-note svg {
  width: 25px;
  height: 25px;
  color: var(--pink);
}
.hero-art {
  position: relative;
  width: 100%;
  max-width: 554px;
  margin-left: auto;
}
.hero-photo {
  height: 586px;
  border-radius: 48% 48% 3px 3px;
  overflow: hidden;
}
.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid var(--teal);
  border-radius: 48% 48% 3px 3px;
  z-index: -1;
}
.hero-flower {
  position: absolute;
  width: 110px;
  height: 110px;
  color: var(--yellow);
  right: -29px;
  top: 7px;
  transform: rotate(15deg);
}
.hero-stamp {
  position: absolute;
  bottom: 46px;
  left: -49px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotate(-12deg);
  text-align: center;
  outline: 1px dashed var(--ink);
  outline-offset: -7px;
}
.hero-stamp span {
  font-size: 10px;
  margin-bottom: 4px;
}
.hero-stamp strong {
  font: 500 23px/1 var(--font-display);
}
.hero-stamp svg {
  width: 21px;
  height: 21px;
  margin-top: 6px;
}
.photo-caption {
  position: absolute;
  bottom: -29px;
  right: 0;
  font-size: 10px;
  letter-spacing: 0.5px;
}
.promise-strip {
  color: var(--paper);
  background: var(--blue);
}
.promise-strip .container {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.promise-strip span {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
}
.promise-strip svg {
  width: 30px;
  height: 30px;
  color: var(--yellow);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.section-heading > p {
  font-size: 13px;
  line-height: 1.8;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.25s;
}
.service-card:hover {
  transform: translateY(-7px);
}
.service-image {
  aspect-ratio: 1.08;
  position: relative;
  overflow: hidden;
}
.service-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.service-card:hover img {
  transform: scale(1.045);
}
.service-number {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--paper);
  padding: 5px 9px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}
.service-gift {
  background: var(--rose);
}
.service-party {
  background: color-mix(in srgb, var(--yellow) 42%, var(--paper));
}
.service-business {
  background: var(--sage);
}
.service-lab {
  background: color-mix(in srgb, var(--blue) 15%, var(--paper));
}
.service-copy {
  padding: 24px 21px 20px;
}
.service-copy h3 {
  font-size: clamp(20px, 2vw, 27px);
}
.service-copy p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
}
.service-products {
  display: block;
  font-size: 9px;
  margin-top: 17px;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 14px;
  font-size: 11px;
  font-weight: 600;
}
.card-link svg {
  width: 20px;
  height: 20px;
}
.image-note {
  font-size: 10px;
  margin-top: 18px;
  text-align: right;
}
.work-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--yellow) 5%, var(--paper));
}
.work-section .section-heading {
  margin-bottom: 28px;
}
.work-section h2 {
  max-width: 730px;
}
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}
.work-filters button {
  min-height: 38px;
  padding: 8px 17px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 30px;
  font-size: 11px;
  transition: background 0.2s;
}
.work-filters button:hover {
  border-color: var(--blue);
}
.work-filters [aria-pressed="true"] {
  background: var(--blue);
  color: var(--paper);
  border-color: var(--blue);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.work-image {
  position: relative;
  aspect-ratio: 5 / 6;
  background: var(--paper);
  overflow: hidden;
}
.work-image img {
  height: 100%;
  object-fit: contain;
}
.work-image span {
  position: absolute;
  top: 12px;
  right: 0;
  background: var(--yellow);
  font-size: 8px;
  letter-spacing: 1px;
  padding: 6px 10px;
}
.work-card h3 {
  margin-top: 18px;
  font-size: 21px;
}
.work-card figcaption p {
  font-size: 11px;
  margin-top: 7px;
}
.work-status {
  font-size: 10px;
  margin-top: 24px;
}
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 100px;
  padding-block: 110px;
}
.about-art {
  position: relative;
  padding: 0 36px 24px 0;
  max-width: 490px;
}
.about-art > img {
  height: auto;
  object-fit: contain;
}
.about-art::after {
  content: "";
  position: absolute;
  inset: 20px 15px 8px 18px;
  border: 1px solid var(--teal);
  z-index: -1;
}
.about-label {
  position: absolute;
  right: -28px;
  bottom: 48px;
  padding: 22px 24px;
  background: var(--yellow);
  font: 600 26px/1.05 var(--font-hand);
  transform: rotate(7deg);
}
.about-label strong {
  font-weight: 600;
}
.about-label svg {
  display: block;
  margin: 8px auto 0;
}
.about-flower {
  position: absolute;
  width: 90px;
  height: 90px;
  color: var(--pink);
  left: -32px;
  bottom: 10px;
}
.about-art .photo-caption {
  bottom: -8px;
  right: 20px;
}
.about-copy h2 {
  margin-bottom: 25px;
}
.about-copy > p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 18px;
  max-width: 470px;
}
.about-signoff {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.about-copy .text-link {
  margin-top: 28px;
}
.process-section {
  position: relative;
  background: var(--blue);
  color: var(--paper);
  padding-block: 75px;
}
.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--paper);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='10'%3E%3Cpath fill='black' d='M0 0h24c0 12-24 12-24 0Z'/%3E%3C/svg%3E");
  mask-repeat: repeat-x;
}
.process-section::before {
  top: -1px;
}
.process-section::after {
  bottom: -1px;
  transform: rotate(180deg);
}
.process-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.process-heading h2 {
  font-size: 49px;
}
.process-heading em {
  color: var(--yellow);
}
.handwritten {
  font: 600 26px/1.1 var(--font-hand);
  display: block;
  transform: rotate(-5deg);
  margin: 23px 0 0 170px;
  color: var(--yellow);
}
.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  padding-block: 30px;
  border-bottom: 1px solid #fbf5e933;
}
.process-steps li:first-child {
  padding-top: 0;
}
.process-steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.step-number {
  color: var(--yellow);
  font: 500 27px/1.2 var(--font-display);
}
.process-steps h3 {
  font-size: 26px;
}
.process-steps p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  max-width: 380px;
}
.process-steps svg {
  color: var(--yellow);
  width: 33px;
  height: 33px;
  margin-left: auto;
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding-block: 100px;
}
.faq .eyebrow {
  margin-bottom: 14px;
}
.faq-flower {
  color: var(--teal);
  width: 75px;
  height: 75px;
  margin-top: 32px;
  transform: rotate(-10deg);
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding-block: 22px;
  font-size: 13px;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  display: block;
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
summary span::before,
summary span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--ink);
  position: absolute;
  top: 10px;
  left: 1px;
}
summary span::after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] summary span::after {
  transform: rotate(0);
}
details[open] summary {
  color: var(--pink);
}
details p {
  font-size: 13px;
  padding: 0 30px 22px 0;
  line-height: 1.8;
}
.contact-section {
  background: var(--rose);
  padding-block: 74px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.contact-copy {
  position: relative;
}
.contact-copy .eyebrow {
  letter-spacing: 1.5px;
}
.contact-copy h2 {
  font-size: 68px;
}
.contact-copy > p:not(.eyebrow) {
  margin-top: 23px;
  font-size: 14px;
}
.contact-flower {
  color: var(--pink);
  width: 110px;
  height: 110px;
  position: absolute;
  right: 17px;
  top: 54px;
  transform: rotate(10deg);
}
.contact-direct {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 30px;
}
.contact-direct:hover {
  text-decoration: underline;
}
.project-form {
  background: var(--paper);
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: 7px 7px 0 #173a530c;
}
.project-form h3 {
  margin-bottom: 26px;
  font-size: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.field label {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.field label span {
  font-weight: 400;
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 0;
  font-size: 12px;
}
select {
  padding-right: 4px;
}
input,
select {
  min-height: 45px;
}
textarea {
  resize: vertical;
  min-height: 98px;
}
input::placeholder,
textarea::placeholder {
  color: var(--ink);
  opacity: 0.7;
}
.project-form .button {
  width: 100%;
}
.form-note {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 13px;
}
.form-status {
  font-size: 12px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.form-status a,
.no-script-contact a {
  text-decoration: underline;
  font-weight: 600;
}
.no-script-contact {
  background: var(--paper);
  padding: 30px;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 45px;
  padding-block: 58px 46px;
}
.footer-wordmark {
  color: var(--paper);
}
.footer-wordmark .wordmark-name svg {
  color: var(--yellow);
}
.footer-main h2 {
  font: 600 12px/1.4 var(--font-body);
  letter-spacing: 0;
  margin: 8px 0 18px;
}
.footer-main p,
.footer-main > div > a:not(.wordmark) {
  display: block;
  font-size: 11px;
  line-height: 2;
}
.footer-main p {
  margin-top: 12px;
}
.footer-main > div > a:not(.wordmark) {
  padding-block: 3px;
}
.footer-main a:hover {
  color: var(--yellow);
}
.footer-note {
  display: block;
  font: 600 25px/1 var(--font-hand);
  color: var(--yellow);
  transform: rotate(-4deg);
  margin-top: 17px;
}
.footer-note svg {
  width: 23px;
  height: 23px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #fbf5e933;
  padding-block: 20px;
  font-size: 9px;
  letter-spacing: 0.3px;
}
.footer-bottom svg {
  color: var(--yellow);
  width: 18px;
  height: 18px;
  margin-left: 10px;
}

@media (min-width: 1600px) {
  .hero {
    padding-block: 64px 70px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 72px);
  }
  .navigation {
    gap: 23px;
  }
  .header-inner {
    gap: 20px;
  }
  .hero {
    gap: 44px;
  }
  .hero-photo {
    height: 540px;
  }
  h1 {
    font-size: 73px;
  }
  .hero-stamp {
    width: 120px;
    height: 120px;
    left: -25px;
  }
  .hero-flower {
    right: -15px;
    width: 90px;
    height: 90px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-copy {
    padding: 20px 15px 17px;
  }
  .service-products {
    min-height: 30px;
  }
  .work-grid {
    gap: 18px;
  }
  .about {
    gap: 55px;
  }
  .process-inner,
  .faq {
    gap: 45px;
  }
  .contact-inner {
    gap: 40px;
  }
  .contact-flower {
    width: 80px;
    height: 80px;
    right: 0;
  }
  .contact-copy h2 {
    font-size: 60px;
  }
  .project-form {
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-main {
    gap: 22px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 100px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .section-space {
    padding-block: 64px;
  }
  .header-inner {
    min-height: 82px;
    flex-wrap: wrap;
  }
  .wordmark-name {
    font-size: 58px;
  }
  .wordmark-name svg {
    width: 26px;
    height: 26px;
  }
  .wordmark-tagline {
    font-size: 8px;
  }
  .header-social {
    display: none;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    background: transparent;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
  }
  .menu-lines {
    width: 18px;
    height: 12px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    position: relative;
  }
  .menu-lines::before {
    content: "";
    position: absolute;
    top: 4.5px;
    left: 0;
    width: 18px;
    border-top: 1px solid;
  }
  .navigation {
    width: 100%;
    gap: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 20px;
  }
  .menu-toggle:not([hidden])[aria-expanded="false"] + .navigation {
    display: none;
  }
  .navigation a {
    padding: 14px 8px;
  }
  .navigation .nav-contact {
    justify-content: space-between;
    margin-top: 8px;
  }
  .hero {
    gap: 30px;
    padding-block: 40px 56px;
  }
  h1 {
    font-size: clamp(50px, 7.5vw, 66px);
    letter-spacing: -2.5px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    gap: 7px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-photo {
    height: 480px;
  }
  .hero-note {
    font-size: 20px;
  }
  .hero-stamp {
    width: 100px;
    height: 100px;
    left: -20px;
    bottom: 30px;
  }
  .hero-stamp strong {
    font-size: 18px;
  }
  .hero-stamp span {
    font-size: 8px;
  }
  .hero-stamp svg {
    width: 15px;
    height: 15px;
  }
  .photo-caption {
    font-size: 8px;
  }
  .hero-flower {
    width: 72px;
    height: 72px;
    top: 20px;
  }
  .promise-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 25px;
    padding-block: 23px;
  }
  .promise-strip span {
    font-size: 11px;
  }
  .promise-strip svg {
    width: 25px;
    height: 25px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .section-heading > p {
    max-width: 400px;
  }
  .service-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .service-copy {
    padding: 24px;
  }
  .service-copy h3 {
    font-size: 28px;
  }
  .service-products {
    min-height: auto;
    font-size: 10px;
  }
  .work-card h3 {
    font-size: 23px;
  }
  .about {
    gap: 40px;
  }
  .about-art {
    padding-right: 10px;
  }
  .about-label {
    font-size: 22px;
    right: -14px;
    bottom: 20px;
    padding: 18px;
  }
  .about-flower {
    left: -15px;
    width: 65px;
    height: 65px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .process-inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
  }
  .process-heading h2 {
    font-size: 40px;
  }
  .handwritten {
    margin-left: 30px;
  }
  .process-steps h3 {
    font-size: 23px;
  }
  .process-steps li {
    gap: 16px;
  }
  .process-steps p {
    font-size: 12px;
  }
  .process-steps svg {
    display: none;
  }
  .faq {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
  }
  .faq .eyebrow {
    font-size: 9px;
  }
  .contact-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
  }
  .contact-copy h2 {
    font-size: 54px;
  }
  .contact-copy .eyebrow {
    font-size: 9px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .contact-flower {
    position: static;
    margin-top: 22px;
    width: 65px;
    height: 65px;
  }
  .contact-direct {
    margin-top: 20px;
  }
  .project-form {
    padding: 24px;
  }
  .project-form .button {
    font-size: 11px;
    padding-inline: 14px;
    gap: 12px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 40px);
  }
  .announcement {
    font-size: 8px;
    letter-spacing: 0.1px;
    gap: 7px;
    min-height: 30px;
    padding-inline: 8px;
  }
  .announcement span {
    font-size: 13px;
  }
  .header-inner {
    min-height: 78px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 30px 53px;
  }
  .hero-copy {
    padding-block: 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: clamp(60px, 14.6vw, 78px);
    letter-spacing: -2.7px;
  }
  .hero-description {
    max-width: 340px;
    font-size: 14px;
    margin-top: 22px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 17px;
  }
  .button {
    min-height: 51px;
    padding: 14px 21px;
    font-size: 12px;
  }
  .hero-note {
    font-size: 23px;
    margin-top: 23px;
  }
  .hero-art {
    width: calc(100% - 20px);
    margin: 0 0 0 auto;
  }
  .hero-photo {
    height: 430px;
  }
  .hero-flower {
    width: 90px;
    height: 90px;
    right: -7px;
    top: -8px;
  }
  .hero-stamp {
    width: 115px;
    height: 115px;
    left: -26px;
    bottom: 27px;
  }
  .hero-stamp strong {
    font-size: 21px;
  }
  .hero-stamp span {
    font-size: 9px;
  }
  .hero-stamp svg {
    width: 19px;
    height: 19px;
  }
  .photo-caption {
    font-size: 9px;
  }
  .promise-strip .container {
    gap: 20px 10px;
    padding-block: 23px;
  }
  .promise-strip span {
    font-size: 9px;
    gap: 9px;
  }
  .promise-strip svg {
    width: 25px;
    height: 25px;
  }
  .section-space {
    padding-block: 55px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  h2 {
    font-size: 37px;
    letter-spacing: -1.2px;
  }
  .section-heading {
    gap: 17px;
    margin-bottom: 25px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-image {
    aspect-ratio: 0.94;
  }
  .service-number {
    top: 8px;
    left: 8px;
    font-size: 8px;
    letter-spacing: 0.7px;
    padding: 4px 6px;
  }
  .service-copy {
    padding: 18px 12px 14px;
  }
  .service-copy h3 {
    font-size: 22px;
    letter-spacing: -0.8px;
  }
  .service-copy p {
    font-size: 12px;
    margin-top: 10px;
  }
  .service-products {
    font-size: 10px;
    min-height: 48px;
    margin-top: 13px;
  }
  .card-link {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 14px;
    padding-top: 11px;
    gap: 5px;
  }
  .card-link svg {
    width: 17px;
    height: 17px;
  }
  .image-note {
    font-size: 9px;
    text-align: left;
  }
  .work-grid {
    gap: 24px 14px;
  }
  .work-image span {
    font-size: 8px;
    padding: 5px 7px;
    top: 8px;
    letter-spacing: 0.6px;
  }
  .work-card h3 {
    font-size: 20px;
    margin-top: 14px;
  }
  .work-card figcaption p {
    font-size: 10px;
  }
  .work-filters {
    gap: 7px;
    margin-bottom: 23px;
  }
  .work-filters button {
    font-size: 10px;
    padding: 8px 12px;
    min-height: 38px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 47px;
  }
  .about-art {
    width: calc(100% - 25px);
    padding-right: 20px;
  }
  .about-label {
    right: -24px;
    font-size: 26px;
    bottom: 25px;
  }
  .about-flower {
    left: -8px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .about-copy h2 {
    font-size: 39px;
  }
  .process-section {
    padding-block: 56px;
  }
  .process-inner {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .process-heading {
    position: relative;
  }
  .process-heading h2 {
    font-size: 43px;
  }
  .handwritten {
    margin: 25px 0 0 80px;
    font-size: 22px;
  }
  .process-steps li {
    padding-block: 24px;
  }
  .process-steps h3 {
    font-size: 25px;
  }
  .process-steps p {
    font-size: 13px;
  }
  .process-steps svg {
    display: block;
    width: 27px;
    height: 27px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq > div:first-child {
    position: relative;
  }
  .faq-flower {
    position: absolute;
    right: 4px;
    bottom: 5px;
    width: 55px;
    height: 55px;
  }
  summary {
    font-size: 12px;
    padding-block: 20px;
  }
  details p {
    font-size: 12px;
  }
  .contact-section {
    padding-block: 54px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-copy h2 {
    font-size: 59px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .contact-flower {
    position: absolute;
    top: 46px;
    right: 18px;
    width: 85px;
    height: 85px;
  }
  .contact-direct {
    margin-top: 24px;
  }
  .project-form {
    padding: 26px 20px;
  }
  .project-form h3 {
    font-size: 29px;
  }
  .field label {
    font-size: 12px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .field {
    margin-bottom: 19px;
  }
  .project-form .button {
    font-size: 12px;
    padding-inline: 16px;
  }
  .form-note {
    font-size: 11px;
  }
  .footer-main {
    padding-block: 45px 35px;
    gap: 32px 22px;
  }
  .footer-main h2 {
    font-size: 12px;
  }
  .footer-main p,
  .footer-main > div > a:not(.wordmark) {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  .footer-main > div > a:not(.wordmark) {
    min-height: 38px;
  }
  .footer-note {
    font-size: 23px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 8px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .service-copy h3 {
    font-size: 19px;
  }
  .hero-photo {
    height: 370px;
  }
  .handwritten {
    position: static;
    margin: 20px 0 0 80px;
  }
  .contact-flower {
    right: 0;
    width: 65px;
    height: 65px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
