:root {
  --ink: #161714;
  --ink-soft: #34342e;
  --paper: #fbfaf7;
  --paper-strong: #ffffff;
  --mist: #f1eee7;
  --line: #ded7ca;
  --copper: #b7834e;
  --copper-dark: #875b31;
  --olive: #3e5f52;
  --sage: #dfe9de;
  --blue: #24364d;
  --shadow: 0 22px 60px rgba(22, 23, 20, 0.14);
  --shadow-soft: 0 14px 36px rgba(22, 23, 20, 0.1);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 5rem;
  font-weight: 800;
}

h2 {
  max-width: 780px;
  font-size: 3rem;
  font-weight: 750;
}

h3 {
  font-size: 1.28rem;
  font-weight: 700;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper-strong);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--paper-strong);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(222, 215, 202, 0.8);
  box-shadow: 0 10px 30px rgba(22, 23, 20, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-panel a {
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-panel a:hover,
.site-header.menu-open .nav-panel a:hover,
.site-header.is-scrolled .nav-panel a:focus-visible,
.site-header.menu-open .nav-panel a:focus-visible {
  background: var(--mist);
}

.nav-panel .nav-cta {
  margin-left: 8px;
  color: var(--paper-strong);
  background: var(--olive);
}

.nav-panel .nav-cta:hover,
.nav-panel .nav-cta:focus-visible {
  color: var(--paper-strong);
  background: var(--copper-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(22, 23, 20, 0.14);
}

.button-primary {
  color: var(--paper-strong);
  background: var(--olive);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-dark);
}

.button-light {
  color: var(--paper-strong);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button-dark {
  color: var(--paper-strong);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-strong);
  padding: 150px 0 74px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.86) 0%, rgba(8, 9, 8, 0.6) 42%, rgba(8, 9, 8, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.58) 0%, rgba(8, 9, 8, 0) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c284;
}

.hero-lead {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.hero-badges li {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-badges strong,
.hero-badges span {
  display: block;
}

.hero-badges strong {
  font-size: 1.08rem;
}

.hero-badges span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.trust-strip {
  background: var(--ink);
  color: var(--paper-strong);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid p {
  min-height: 116px;
  padding: 24px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
  font-family: "Sora", "Inter", sans-serif;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.section {
  padding: 104px 0;
}

.split,
.custom-layout,
.process-layout,
.why-layout,
.craft-layout,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.contact-copy p,
.process-copy p {
  color: #5d5a52;
  font-size: 1.03rem;
}

.section-copy p + p {
  margin-top: 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.premium-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  margin-bottom: 50px;
}

.heading-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: #5d5a52;
  font-size: 1.05rem;
}

.heading-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.heading-tags span,
.custom-mini-list span {
  padding: 9px 12px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}

.heading-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.heading-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.services-visual img {
  object-position: 42% 50%;
}

.custom-visual {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #eee8dd);
}

.custom-visual img {
  width: 78%;
  min-height: 340px;
  max-height: 440px;
  object-fit: contain;
  padding: 22px 0 64px;
}

.visual-proof {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--paper-strong);
  background: rgba(16, 17, 15, 0.74);
  backdrop-filter: blur(16px);
}

.visual-proof span {
  color: #f5c284;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-proof strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.08rem;
}

.custom-mini-list {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.inline-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.about-media {
  position: relative;
  min-height: 540px;
}

.about-main,
.about-float,
.craft-media img,
.process-copy img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-main {
  width: 86%;
  height: 420px;
  object-fit: cover;
}

.about-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--paper);
}

.services,
.why,
.testimonials {
  background: var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.product-card,
.example-card,
.testimonial,
.why-grid article,
.contact-options a,
.contact-options p,
.custom-form,
.contact-form,
.faq-list details {
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--copper));
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 95, 82, 0.38);
  box-shadow: var(--shadow);
}

.service-number {
  margin-bottom: 52px;
  color: var(--copper-dark);
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
}

.service-card p {
  margin-top: 14px;
  color: #625f58;
}

.catalog {
  background: var(--paper);
}

.catalog-heading {
  align-items: center;
}

.catalog-heading strong {
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  background: var(--paper-strong);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 131, 78, 0.45);
  box-shadow: var(--shadow);
}

.product-card.featured {
  border-color: rgba(62, 95, 82, 0.5);
}

.product-media {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f3efe7);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 220ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-info p {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info span {
  color: #5d5a52;
  font-weight: 800;
}

.product-info .button {
  width: 100%;
  min-height: 44px;
}

.custom {
  background: #f7f3ea;
}

.carousel {
  min-width: 0;
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-strong);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  color: var(--paper-strong);
  background: var(--ink);
  transform: translateY(-2px);
}

.carousel-track {
  display: block;
  position: relative;
  gap: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 35%, #ffffff 0%, #ffffff 46%, #f3efe7 100%);
  box-shadow: 0 18px 46px rgba(22, 23, 20, 0.1);
}

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

.example-card {
  position: absolute;
  inset: 0;
  flex: none;
  max-width: 100%;
  overflow: hidden;
  scroll-snap-align: none;
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: scale(0.985);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.example-card.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.example-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(14px, 3vw, 28px) clamp(18px, 4vw, 40px) 10px;
  background: #ffffff;
}

.example-card figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(222, 215, 202, 0.72);
  font-weight: 850;
}

.carousel-note {
  margin-top: 14px;
  color: #625f58;
  font-size: 0.9rem;
  font-weight: 750;
}

.custom-form,
.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.form-heading {
  margin-bottom: 6px;
}

label {
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper-strong);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(62, 95, 82, 0.14);
}

.process {
  background: var(--paper);
}

.process-layout {
  align-items: start;
}

.process-copy img {
  width: 100%;
  max-height: 540px;
  margin-top: 28px;
  object-fit: cover;
  object-position: top;
}

.steps {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
  border-radius: var(--radius);
}

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--copper-dark);
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 850;
}

.steps strong {
  display: block;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.12rem;
}

.steps p {
  margin-top: 8px;
  color: #625f58;
}

.why-layout {
  align-items: start;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-grid article {
  min-height: 180px;
  padding: 22px;
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid strong {
  margin-bottom: 12px;
  font-family: "Sora", "Inter", sans-serif;
}

.why-grid span {
  color: #625f58;
}

.why .button {
  margin-top: 28px;
}

.craft {
  background: var(--ink);
  color: var(--paper-strong);
}

.craft .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.craft-media img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-heading {
  align-items: end;
}

.testimonial-proof {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.testimonial-proof img {
  width: 100%;
  max-height: 285px;
  object-fit: contain;
}

.testimonial-proof span,
.testimonial-proof strong {
  display: block;
}

.testimonial-proof span {
  margin-bottom: 8px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-proof strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.42rem;
  line-height: 1.1;
}

.testimonial {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.testimonial::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 4px;
  background: var(--olive);
}

.stars {
  margin-bottom: 22px;
  color: var(--copper-dark);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.testimonial figcaption {
  margin-top: 24px;
  color: var(--copper-dark);
  font-weight: 850;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  background: var(--paper-strong);
  box-shadow: none;
}

.faq-list summary {
  padding: 20px;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 750;
  cursor: pointer;
}

.faq-list p {
  padding: 0 20px 20px;
  color: #625f58;
}

.contact {
  background: #f8f8f4;
}

.contact-layout {
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.contact-options a,
.contact-options p {
  display: grid;
  gap: 4px;
  padding: 18px;
  margin: 0;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-options a:hover,
.contact-options a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(62, 95, 82, 0.5);
}

.contact-options strong {
  font-family: "Sora", "Inter", sans-serif;
}

.contact-options span {
  color: #625f58;
  font-size: 0.94rem;
}

.footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #10110f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 38px;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--paper-strong);
  font-size: 1.2rem;
}

.footer h2 {
  margin-bottom: 14px;
  color: var(--paper-strong);
  font-size: 0.92rem;
}

.footer a,
.footer span {
  display: block;
}

.footer a {
  margin-bottom: 8px;
  transition: color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--paper-strong);
}

.legal details {
  margin-bottom: 10px;
}

.legal summary {
  color: var(--paper-strong);
  cursor: pointer;
  font-weight: 750;
}

.legal p {
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-dialog {
  width: min(1080px, calc(100% - 28px));
  max-height: min(860px, calc(100svh - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.product-dialog::backdrop {
  background: rgba(12, 13, 11, 0.66);
  backdrop-filter: blur(8px);
}

.dialog-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 620px;
}

.dialog-media {
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--mist);
}

.dialog-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.dialog-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 42px;
  max-height: min(860px, calc(100svh - 28px));
  overflow-y: auto;
}

.dialog-content h2 {
  font-size: 2.1rem;
}

.dialog-content p {
  color: #625f58;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-strong);
  font-weight: 900;
}

.quantity-box {
  display: inline-grid;
  grid-template-columns: 44px 66px 44px;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
}

.quantity-box button {
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 900;
}

.quantity-box output {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-inline: 1px solid var(--line);
  font-weight: 900;
}

.order-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--mist);
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.order-summary dt {
  color: #625f58;
}

.order-summary dd {
  margin: 0;
  font-weight: 900;
}

.dialog-note {
  font-size: 0.92rem;
}

.order-form {
  display: grid;
  gap: 18px;
}

.delivery-fieldset {
  padding: 18px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.delivery-fieldset legend {
  padding: 0 8px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 850;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.delivery-grid .field {
  display: grid;
  gap: 7px;
}

.delivery-grid .wide {
  grid-column: 1 / -1;
}

.order-form .button {
  width: 100%;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

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

  .premium-heading {
    grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
    gap: 36px;
  }

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

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

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% - 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-panel a {
    border-radius: 7px;
  }

  .nav-panel .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .split,
  .custom-layout,
  .process-layout,
  .why-layout,
  .craft-layout,
  .contact-layout,
  .faq-layout,
  .premium-heading,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .premium-heading {
    gap: 18px;
  }

  .premium-heading .heading-copy {
    order: -1;
  }

  .heading-visual,
  .heading-visual img {
    min-height: 300px;
  }

  .custom-visual img {
    max-height: 360px;
  }

  .testimonial-proof {
    min-height: auto;
  }

  .about-media {
    min-height: 470px;
  }

  .dialog-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-dialog {
    overflow-y: auto;
  }

  .dialog-media {
    padding: 24px;
  }

  .dialog-media img {
    max-height: 310px;
  }

  .dialog-content {
    padding: 30px;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero {
    min-height: 84svh;
    padding: 128px 0 46px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 9, 8, 0.88) 0%, rgba(8, 9, 8, 0.54) 70%, rgba(8, 9, 8, 0.24) 100%),
      linear-gradient(0deg, rgba(8, 9, 8, 0.58) 0%, rgba(8, 9, 8, 0) 52%);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .hero-badges,
  .trust-grid,
  .service-grid,
  .product-grid,
  .testimonial-grid,
  .why-grid,
  .contact-options,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    display: grid;
  }

  .trust-grid {
    display: grid;
  }

  .trust-grid p {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section {
    padding: 74px 0;
  }

  .about-media {
    min-height: 370px;
  }

  .about-main {
    width: 92%;
    height: 310px;
  }

  .about-float {
    width: 42%;
    border-width: 5px;
  }

  .service-card,
  .testimonial,
  .why-grid article {
    min-height: auto;
  }

  .heading-visual,
  .heading-visual img {
    min-height: 250px;
  }

  .services-visual img {
    object-position: center;
  }

  .custom-visual img {
    width: 72%;
    min-height: 300px;
    padding-bottom: 76px;
  }

  .heading-tags span,
  .custom-mini-list span {
    font-size: 0.8rem;
  }

  .example-card {
    flex-basis: auto;
  }

  .example-card img {
    height: 100%;
    padding: 12px 16px 8px;
  }

  .custom-form,
  .contact-form {
    padding: 22px;
  }

  .carousel {
    padding: 18px;
  }

  .carousel-top {
    align-items: flex-start;
  }

  .testimonial-proof {
    grid-template-columns: 0.52fr 1fr;
    padding: 18px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .dialog-content h2 {
    font-size: 1.65rem;
  }

  .product-dialog {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
  }

  .dialog-content {
    padding: 22px;
  }

  .dialog-media {
    padding: 16px;
  }

  .dialog-media img {
    max-height: 220px;
  }

  .delivery-fieldset {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
