@font-face {
  font-family: "Cairo";
  src: url("assets/fonts/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("assets/fonts/Cairo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("assets/fonts/Cairo-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Lalezar";
  src: url("assets/fonts/Lalezar-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --navy: #0a2540;
  --navy-soft: #153a54;
  --coral: #f36c3d;
  --coral-dark: #da562d;
  --bone: #f6f0e6;
  --bone-dark: #ece2d3;
  --white: #fff;
  --ink: #102b3a;
  --muted: #63717a;
  --green: #1fa855;
  --green-dark: #158746;
  --line: rgba(10, 37, 64, 0.14);
  --shadow: 0 18px 55px rgba(10, 37, 64, 0.12);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bone);
  color: var(--ink);
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  right: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}

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

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

.section {
  padding-block: 76px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(246, 240, 230, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-link img {
  width: 142px;
  height: auto;
}

.desktop-nav {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
}

.header-cta svg {
  width: 21px;
  fill: currentColor;
}

.header-cta span {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: 54px 72px;
  isolation: isolate;
}

.hero-pattern {
  position: absolute;
  inset: auto -100px -110px auto;
  z-index: -1;
  width: 430px;
  aspect-ratio: 1;
  background: url("assets/brand/interlock-pattern.svg") center / 420px repeat;
  opacity: 0.07;
  transform: rotate(-9deg);
  mask-image: radial-gradient(circle, #000 25%, transparent 70%);
}

.hero-grid {
  display: grid;
  gap: 52px;
}

.eyebrow {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
}

.hero h1,
.section-heading h2,
.how-copy h2,
.order-intro h2,
.faq h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Lalezar", "Cairo", sans-serif;
  font-weight: 400;
  line-height: 0.94;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.8rem, 18vw, 6.7rem);
  letter-spacing: -0.025em;
}

.hero h1 em {
  position: relative;
  color: var(--coral);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: -1;
  width: 91%;
  height: 13px;
  border-radius: 999px;
  background: rgba(243, 108, 61, 0.16);
  transform: rotate(-2deg);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button svg {
  width: 20px;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(243, 108, 61, 0.28);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-primary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  transform: rotate(180deg);
}

.text-link {
  padding-block: 8px;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 900;
}

.price-note {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-note svg {
  width: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--coral);
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-visual {
  position: relative;
  min-height: 405px;
  margin-inline: 2px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 7px solid var(--white);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-photo-main {
  inset: 0 13% 13% 0;
  border-radius: 34% 18% 28% 16% / 25% 20% 32% 22%;
  transform: rotate(2deg);
}

.hero-photo-small {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 43%;
  aspect-ratio: 1;
  border-radius: 26px;
  transform: rotate(-5deg);
}

.fit-stamp {
  position: absolute;
  top: -16px;
  left: 0;
  z-index: 3;
  width: 106px;
  height: 106px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--bone);
  color: var(--navy);
  transform: rotate(-8deg);
}

.fit-stamp img {
  width: 34px;
  margin-bottom: 2px;
}

.fit-stamp small {
  font-size: 0.65rem;
  line-height: 1.2;
}

.fit-stamp strong {
  color: var(--coral);
  font-size: 0.86rem;
  line-height: 1.25;
}

.promise-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
  color: var(--white);
}

.promise-grid {
  padding-block: 20px;
  display: grid;
  gap: 0;
}

.promise-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.promise-grid > div:last-child {
  border-bottom: 0;
}

.promise-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
}

.promise-grid p,
.promise-grid strong,
.promise-grid small {
  display: block;
  margin: 0;
}

.promise-grid strong {
  font-size: 0.9rem;
}

.promise-grid small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading h2,
.how-copy h2,
.faq h2 {
  font-size: clamp(2.8rem, 12vw, 5rem);
}

.section-heading > p,
.handmade-heading > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 38px rgba(10, 37, 64, 0.05);
}

.product-image {
  position: relative;
  aspect-ratio: 1.05;
  overflow: hidden;
  background: #eee9e0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-info {
  padding: 20px;
}

.product-kind {
  margin: 0 0 5px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.product-info h3,
.handmade-card h3,
.steps-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.45;
}

.product-info > p:not(.product-kind) {
  min-height: 53px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-order {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.product-order:hover {
  color: var(--coral-dark);
}

.handmade {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.handmade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/brand/interlock-pattern.svg") center / 440px repeat;
  opacity: 0.035;
}

.handmade .container {
  position: relative;
}

.eyebrow-light,
.handmade-heading h2 {
  color: var(--white);
}

.handmade-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.handmade-grid {
  display: grid;
  gap: 16px;
}

.handmade-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.handmade-card > p {
  margin: auto 0 3px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
}

.handmade-card h3 {
  color: var(--white);
  font-size: 1.3rem;
}

.product-order.light {
  margin-top: 18px;
  color: var(--white);
}

.handmade-art {
  position: relative;
  width: 100%;
  height: 160px;
  display: grid;
  place-items: center;
}

.gift-box {
  position: absolute;
  width: 118px;
  height: 90px;
  bottom: 10px;
  border-radius: 12px;
  background: var(--bone);
  transform: rotate(2deg);
}

.gift-ribbon {
  position: absolute;
  bottom: 10px;
  width: 26px;
  height: 90px;
  background: var(--coral);
  transform: rotate(2deg);
}

.gift-loop {
  position: absolute;
  top: 32px;
  width: 48px;
  height: 38px;
  border: 13px solid var(--coral);
  border-radius: 55% 65% 30% 65%;
}

.gift-loop.one { transform: translateX(19px) rotate(20deg); }
.gift-loop.two { transform: translateX(-19px) scaleX(-1) rotate(20deg); }

.flower-art i {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 60% 40% 60% 40%;
  background: var(--coral);
  transform-origin: 85% 85%;
}

.flower-art i:nth-of-type(1) { transform: rotate(0deg) translate(8px, -8px); }
.flower-art i:nth-of-type(2) { transform: rotate(72deg) translate(8px, -8px); }
.flower-art i:nth-of-type(3) { transform: rotate(144deg) translate(8px, -8px); }
.flower-art i:nth-of-type(4) { transform: rotate(216deg) translate(8px, -8px); }
.flower-art i:nth-of-type(5) { transform: rotate(288deg) translate(8px, -8px); }

.flower-center {
  position: absolute;
  z-index: 2;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bone);
}

.flower-art b {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 8px;
  height: 58px;
  border-radius: 10px;
  background: var(--bone);
}

.tag-shape {
  position: relative;
  width: 155px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 12px 24px 24px 12px;
  background: var(--bone);
  color: var(--navy);
  transform: rotate(-7deg);
}

.tag-shape::before {
  content: "";
  position: absolute;
  left: -35px;
  border-top: 45px solid transparent;
  border-bottom: 45px solid transparent;
  border-right: 38px solid var(--bone);
}

.tag-shape i {
  position: absolute;
  left: -17px;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--navy);
}

.tag-shape b {
  font-family: "Lalezar", sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.illustration-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

.how-grid {
  display: grid;
  gap: 36px;
}

.how-copy > p:last-child {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  border-top: 1px solid var(--line);
}

.steps-list li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.steps-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.order {
  padding-top: 18px;
}

.order-shell {
  overflow: hidden;
  display: grid;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.order-intro {
  position: relative;
  overflow: hidden;
  padding: 34px 24px 28px;
  color: var(--white);
}

.order-intro::after {
  content: "";
  position: absolute;
  inset: auto -80px -130px auto;
  width: 310px;
  aspect-ratio: 1;
  border: 60px solid rgba(243, 108, 61, 0.16);
  border-radius: 50%;
}

.order-intro h2 {
  color: var(--white);
  font-size: clamp(3.2rem, 15vw, 5.5rem);
}

.order-intro > p:not(.eyebrow) {
  max-width: 410px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.order-mark {
  width: 88px;
  margin-top: 32px;
}

.order-form {
  margin: 6px;
  padding: 24px 18px;
  border-radius: 30px;
  background: var(--white);
}

.order-form fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.order-form legend,
.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.field-label small {
  color: var(--muted);
  font-weight: 400;
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 5px;
  border-radius: 16px;
  background: var(--bone);
}

.segment-control label {
  cursor: pointer;
}

.segment-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

.segment-control span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.segment-control input:checked + span {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 5px 16px rgba(10, 37, 64, 0.1);
}

.segment-control input:focus-visible + span {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.order-form select,
.order-form input,
.order-form textarea {
  width: 100%;
  min-height: 52px;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
}

.order-form .segment-control input {
  width: 1px;
  min-height: 1px;
  margin: 0;
  padding: 0;
}

.order-form textarea {
  min-height: 94px;
  resize: vertical;
}

.order-form select:focus,
.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--coral);
  outline: 3px solid rgba(243, 108, 61, 0.15);
}

.message-preview {
  margin: 3px 0 18px;
  padding: 14px;
  border-right: 4px solid var(--coral);
  border-radius: 12px;
  background: var(--bone);
}

.message-preview span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.message-preview p {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.7;
}

.button-whatsapp {
  width: 100%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 168, 85, 0.2);
}

.button-whatsapp:hover {
  background: var(--green-dark);
}

.button-whatsapp svg {
  width: 22px;
  fill: currentColor;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  gap: 32px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 21px 0 21px 42px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--coral);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  margin: -5px 0 22px;
  padding-left: 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding-block: 52px 120px;
  background: #06192a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-grid img {
  width: 168px;
  height: auto;
}

.footer-tagline {
  margin: 16px 0 0;
  color: var(--coral);
  font-family: "Lalezar", sans-serif;
  font-size: 1.4rem;
}

.footer-parent {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

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

.footer-contact span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
}

.footer-contact a {
  margin-top: 2px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.footer-note {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.mobile-order-bar {
  position: fixed;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  z-index: 80;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(6, 25, 42, 0.96);
  color: var(--white);
  box-shadow: 0 15px 45px rgba(6, 25, 42, 0.33);
  backdrop-filter: blur(14px);
}

.mobile-order-bar small,
.mobile-order-bar strong {
  display: block;
  line-height: 1.3;
}

.mobile-order-bar small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
}

.mobile-order-bar strong {
  margin-top: 3px;
  font-size: 0.78rem;
}

.mobile-order-bar a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-order-bar svg {
  width: 18px;
  fill: currentColor;
}

@media (min-width: 660px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .section {
    padding-block: 96px;
  }

  .brand-link img {
    width: 156px;
  }

  .header-cta {
    width: auto;
    height: auto;
    padding: 11px 16px;
    border-radius: 999px;
  }

  .header-cta span {
    display: inline;
    margin-right: 8px;
    font-size: 0.78rem;
    font-weight: 900;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .hero-visual {
    min-height: 510px;
  }

  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .promise-grid > div,
  .promise-grid > div:last-child {
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .promise-grid > div:last-child {
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
  }

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

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

  .how-grid,
  .faq-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
  }

  .order-shell {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .order-intro {
    padding: 54px 42px;
  }

  .order-form {
    padding: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .header-inner {
    min-height: 84px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
  }

  .desktop-nav a {
    position: relative;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--coral);
    transition: width 180ms ease;
  }

  .desktop-nav a:hover::after {
    width: 100%;
  }

  .hero {
    min-height: calc(100svh - 84px);
    padding-block: 72px 96px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.93fr;
    gap: 86px;
  }

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

  .hero-visual {
    min-height: 600px;
  }

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

  .product-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
  }

  .product-card-featured .product-image {
    aspect-ratio: auto;
    min-height: 430px;
  }

  .product-card-featured .product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
  }

  .product-card-featured .product-info h3 {
    font-size: 1.75rem;
  }

  .product-grid .product-card:last-child {
    grid-column: 3;
  }

  .handmade-card {
    min-height: 390px;
    padding: 32px;
  }

  .order-shell {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .order-form {
    margin: 12px;
    padding: 46px;
  }

  .site-footer {
    padding-bottom: 64px;
  }

  .mobile-order-bar {
    display: none;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

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

  .hero-visual {
    min-height: 365px;
  }

  .fit-stamp {
    width: 92px;
    height: 92px;
  }

  .mobile-order-bar div {
    display: none;
  }

  .mobile-order-bar a {
    width: 100%;
  }
}

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

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