/* ============================================================
   Stickable Prints — Marketing Site
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --rose: #c4796a;
  --rose-deep: #a8604f;
  --rose-soft: #e3b8ad;
  --rose-tint: #f4e2dc;
  --cream: #faf7f2;
  --cream-deep: #f1ebe1;
  --cream-warm: #f6efe3;
  --charcoal: #3d3028;
  --charcoal-soft: #5b4a40;
  --charcoal-mute: #8a7a6f;
  --line: #e8ddd0;

  --shadow-soft: 0 8px 30px rgba(61, 48, 40, 0.06);
  --shadow-lift: 0 18px 50px rgba(61, 48, 40, 0.12);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --script: "Pinyon Script", "Brush Script MT", cursive;

  --container: 1180px;
  --space-section: clamp(72px, 9vw, 130px);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--charcoal);
  margin: 0 0 0.4em;
  line-height: 1.15;
}

p {
  margin: 0 0 1em;
}

::selection {
  background: var(--rose-soft);
  color: var(--charcoal);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rose);
  font-weight: 700;
  margin: 0 0 18px;
}

.eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rose);
  opacity: 0.7;
}

.eyebrow.light {
  color: var(--cream);
}
.eyebrow-line.light {
  background: var(--cream);
  opacity: 0.7;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  margin: 0;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 0 1 220px;
  height: 1px;
  background: var(--line);
}
.divider-mark {
  margin: 0 18px;
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--rose);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(196, 121, 106, 0.28);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(196, 121, 106, 0.36);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-large {
  padding: 18px 42px;
  font-size: 1rem;
}

/* ---------- Decorative photo corners ---------- */
.corner {
  position: absolute;
  width: 38px;
  height: 38px;
  pointer-events: none;
  opacity: 0.55;
}
.corner.small {
  width: 22px;
  height: 22px;
  opacity: 0.7;
}
.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: var(--rose);
}
.corner::before {
  width: 100%;
  height: 1.5px;
}
.corner::after {
  width: 1.5px;
  height: 100%;
}

.corner-tl {
  top: 22px;
  left: 22px;
}
.corner-tl::before {
  top: 0;
  left: 0;
}
.corner-tl::after {
  top: 0;
  left: 0;
}

.corner-tr {
  top: 22px;
  right: 22px;
}
.corner-tr::before {
  top: 0;
  right: 0;
}
.corner-tr::after {
  top: 0;
  right: 0;
}

.corner-bl {
  bottom: 22px;
  left: 22px;
}
.corner-bl::before {
  bottom: 0;
  left: 0;
}
.corner-bl::after {
  bottom: 0;
  left: 0;
}

.corner-br {
  bottom: 22px;
  right: 22px;
}
.corner-br::before {
  bottom: 0;
  right: 0;
}
.corner-br::after {
  bottom: 0;
  right: 0;
}

.corner.small.corner-tl {
  top: 10px;
  left: 10px;
}
.corner.small.corner-tr {
  top: 10px;
  right: 10px;
}
.corner.small.corner-bl {
  bottom: 10px;
  left: 10px;
}
.corner.small.corner-br {
  bottom: 10px;
  right: 10px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 247, 242, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-script {
  font-family: var(--script);
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--charcoal);
  line-height: 1;
}
.brand-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 4px;
}

.primary-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
.primary-nav a {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.primary-nav a:hover {
  color: var(--rose);
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.primary-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--rose);
  color: var(--cream) !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  letter-spacing: 0.14em !important;
  transition: background 0.2s ease;
}
.nav-cta:hover {
  background: var(--rose-deep);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  border-radius: 999px;
}
.hamburger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.hamburger span:nth-child(1) {
  top: 14px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}
.hamburger.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.mobile-nav.is-open {
  max-height: 600px;
}
.mobile-nav ul {
  padding: 12px 24px 24px;
}
.mobile-nav li {
  border-bottom: 1px solid var(--line);
}
.mobile-nav li:last-child {
  border-bottom: 0;
}
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mobile-nav a.nav-cta {
  margin-top: 14px;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 11vw, 140px) 0 clamp(80px, 12vw, 150px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(196, 121, 106, 0.08), transparent 38%),
    radial-gradient(circle at 84% 76%, rgba(196, 121, 106, 0.07), transparent 42%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  font-weight: 500;
  margin: 6px 0 22px;
  letter-spacing: -0.005em;
}
.hero-title em {
  font-style: italic;
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.15em;
  color: var(--rose);
  letter-spacing: 0;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--charcoal-soft);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-meta {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal-soft);
}
.hero-meta div span {
  color: var(--rose);
  margin-right: 8px;
}

/* ---------- How It Works ---------- */
.how {
  padding: var(--space-section) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 36px 26px;
  position: relative;
}

.step-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed var(--rose-soft);
}
.step-icon svg {
  width: 38px;
  height: 38px;
}

.step-num {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 8px;
}

.step h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--charcoal-soft);
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: var(--space-section) 0;
  background: var(--cream-warm);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.card-featured {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-12px);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(61, 48, 40, 0.22);
}
.card-featured:hover {
  transform: translateY(-16px);
}
.card-featured .card-title,
.card-featured .card-price {
  color: var(--cream);
}
.card-featured .card-qty {
  color: var(--rose-soft);
}
.card-featured .card-desc {
  color: rgba(250, 247, 242, 0.78);
}
.card-featured .card-list li {
  color: rgba(250, 247, 242, 0.85);
  border-bottom-color: rgba(250, 247, 242, 0.15);
}
.card-featured .corner::before,
.card-featured .corner::after {
  background: var(--rose-soft);
}
.card-featured .btn-primary {
  background: var(--rose);
  color: var(--cream);
}
.card-featured .btn-primary:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--cream);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(196, 121, 106, 0.32);
}

.card-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 8px;
}

.card-qty {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
  font-weight: 700;
  margin-bottom: 16px;
}

.card-price {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1;
}
.card-price .dollar {
  font-size: 0.5em;
  vertical-align: super;
  margin-right: 4px;
  color: var(--rose);
}

.card-desc {
  color: var(--charcoal-soft);
  margin: 8px 0 24px;
  font-size: 0.96rem;
}

.card-list {
  text-align: left;
  margin: 0 auto 28px;
  max-width: 240px;
  flex: 1;
}
.card-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--charcoal-soft);
  position: relative;
  padding-left: 24px;
}
.card-list li:last-child {
  border-bottom: 0;
}
.card-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.78rem;
  top: 14px;
}

.card-cta {
  width: 100%;
}

/* ---------- Perfect For ---------- */
.perfect-for {
  padding: var(--space-section) 0;
}

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

.use {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, background 0.25s ease;
}
.use:hover {
  transform: translateY(-3px);
  border-color: var(--rose-soft);
  box-shadow: var(--shadow-soft);
  background: var(--cream-warm);
}

.use-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose-tint);
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.use h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.use p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--charcoal-soft);
}

/* ---------- Gallery ---------- */
.gallery {
  padding: var(--space-section) 0;
  background: var(--cream-warm);
}

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

.gallery-item {
  aspect-ratio: 1 / 1;
}

.gallery-card {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--charcoal-mute);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.gallery-card .cam {
  width: 36px;
  height: 36px;
  color: var(--rose);
  opacity: 0.7;
}
.gallery-card p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--space-section) 0;
}

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

.t-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.t-card::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 22px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--rose-soft);
  line-height: 1;
}
.t-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.stars {
  color: var(--rose);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.t-card blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--charcoal);
  font-weight: 400;
  flex: 1;
  position: relative;
  z-index: 1;
}
.t-card blockquote p {
  margin: 0;
}

.t-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.t-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.t-meta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(196, 121, 106, 0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(196, 121, 106, 0.14), transparent 45%);
  pointer-events: none;
}
.cta .corner::before,
.cta .corner::after {
  background: var(--rose-soft);
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
}

.cta-title {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
  font-weight: 500;
}
.cta-title em {
  font-style: italic;
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.15em;
  color: var(--rose-soft);
}

.cta-sub {
  color: rgba(250, 247, 242, 0.82);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.cta .btn-primary {
  background: var(--rose);
  color: var(--cream);
}
.cta .btn-primary:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.cta-social {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
  margin: 0;
  font-weight: 700;
}
.cta-social a {
  color: var(--rose-soft);
  margin-left: 8px;
  letter-spacing: 0.16em;
}
.cta-social a:hover {
  color: var(--cream);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-deep);
  padding: 70px 0 30px;
  color: var(--charcoal-soft);
  font-size: 0.94rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand-script {
  font-size: 2.2rem;
}
.footer-tag {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose);
  margin: 6px 0 0;
}

.footer-nav h4,
.footer-social h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 700;
  margin: 0 0 18px;
}

.footer-nav ul li,
.socials li {
  margin-bottom: 10px;
}
.footer-nav a,
.socials a {
  color: var(--charcoal-soft);
  font-size: 0.94rem;
}
.footer-nav a:hover,
.socials a:hover {
  color: var(--rose);
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.socials svg {
  color: var(--rose);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.footer-bottom p {
  margin: 4px 0;
}
.made-with span {
  color: var(--rose);
  margin-left: 4px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001s !important;
    animation-duration: 0.001s !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 960px) {
  .steps,
  .cards,
  .use-grid,
  .gallery-grid,
  .t-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .card-featured {
    transform: none;
    grid-column: 1 / -1;
  }
  .card-featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .primary-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-nav {
    display: block;
  }

  .nav-container {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-script {
    font-size: 1.85rem;
  }
  .brand-tag {
    font-size: 0.6rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
    margin-top: 44px;
  }
  .hero-ctas .btn {
    flex: 1;
  }

  .steps,
  .cards,
  .use-grid,
  .gallery-grid,
  .t-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-featured {
    transform: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .corner {
    width: 26px;
    height: 26px;
  }
  .corner-tl,
  .corner-tr {
    top: 14px;
  }
  .corner-bl,
  .corner-br {
    bottom: 14px;
  }
  .corner-tl,
  .corner-bl {
    left: 14px;
  }
  .corner-tr,
  .corner-br {
    right: 14px;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .divider::before,
  .divider::after {
    flex-basis: 80px;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 18px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}
