:root {
  --ink: #201f1d;
  --muted: #6f6258;
  --paper: #f7f2ee;
  --paper-2: #efe5dd;
  --line: rgba(90, 66, 49, 0.16);
  --brown: #6e4934;
  --brown-2: #9b755d;
  --dark: #171513;
  --white: #fffaf6;
  --shadow: 0 28px 90px rgba(66, 45, 31, 0.18);
  --page-pad: clamp(1.25rem, 5vw, 5rem);
  --mobile-pad: 1.25rem;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 82% 10%, rgba(168, 135, 112, 0.2), transparent 28rem),
    linear-gradient(180deg, #fbf7f3 0%, var(--paper) 46%, #fbf7f3 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow-x: hidden;
}

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

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

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

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(123, 82, 59, 0.16), transparent 64%);
  transition: opacity 220ms ease;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem clamp(1rem, 4vw, 4.8rem);
  transition: padding 280ms ease, background 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.85rem;
  background: rgba(250, 246, 241, 0.9);
  box-shadow: 0 10px 30px rgba(66, 45, 31, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-grid;
  gap: 0.12rem;
  min-width: 8.2rem;
}

.brand span {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.brand small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-self: end;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.4vw, 2.45rem);
}

.site-nav a,
.header-cta,
.eyebrow,
.link-arrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.7rem 0;
}

.site-nav .header-cta {
  padding: 0 1.35rem;
}

.site-nav a:not(.header-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  height: 1px;
  content: "";
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.95rem 1.35rem;
  color: white;
  border-radius: 3px;
  background: var(--brown);
  box-shadow: 0 14px 32px rgba(81, 53, 37, 0.18);
  transition: transform 220ms ease, background 220ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #5f3e2c;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.78);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 0.24rem 0;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

.section {
  position: relative;
  padding-inline: var(--page-pad);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding-top: 7.5rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 242, 238, 0.98) 0%, rgba(247, 242, 238, 0.82) 45%, rgba(247, 242, 238, 0.12) 100%),
    radial-gradient(circle at 52% 56%, rgba(124, 84, 62, 0.12), transparent 23rem);
}

.hero-side {
  position: absolute;
  left: clamp(1rem, 3.8vw, 3.2rem);
  top: 22%;
  display: grid;
  place-items: center;
  gap: 1.4rem;
  color: var(--brown);
}

.hero-side span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-side i,
.hero-side::before,
.hero-side::after {
  display: block;
  width: 1px;
  height: 3.2rem;
  content: "";
  background: rgba(110, 73, 52, 0.48);
}

.hero-copy {
  max-width: 42rem;
  padding-left: clamp(0rem, 6vw, 5.6rem);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--brown);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.55rem;
  font-size: clamp(3.25rem, 7.2vw, 6.45rem);
  line-height: 0.96;
}

h1 span {
  display: block;
  color: var(--brown);
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.15rem, 4.4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.hero-lead {
  max-width: 32rem;
  color: #39322d;
  font-size: 1.04rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.18rem;
  padding: 0 1.55rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, border 220ms ease, background 220ms ease, color 220ms ease;
}

.btn::after,
.link-arrow::after,
.header-cta::after {
  display: inline-block;
  margin-left: 0.45rem;
  content: "→";
}

.btn-primary {
  color: white;
  background: var(--brown);
  box-shadow: 0 18px 40px rgba(101, 68, 48, 0.2);
}

.btn-ghost {
  color: var(--ink);
  border-color: rgba(90, 66, 49, 0.36);
  background: rgba(255, 250, 246, 0.58);
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 34rem;
  display: flex;
  align-items: center;
}

.hero-visual img {
  width: min(48rem, 100%);
  height: min(70vh, 42rem);
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 9rem;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: 3rem;
  bottom: 12%;
  width: min(18rem, 72%);
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 46px rgba(66, 45, 31, 0.16);
}

.hero-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--serif);
  font-size: 2rem;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.floating-card {
  animation: floatCard 5s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(90, 66, 49, 0.48);
  border-radius: 999px;
}

.scroll-cue::before {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-right: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: arrowDrop 1.6s ease-in-out infinite;
}

.service-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.54);
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  padding: 1.55rem 2rem;
  animation: marquee 24s linear infinite;
}

.strip-track span {
  position: relative;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-track span::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 1rem;
  border: 1px solid var(--brown);
  transform: rotate(45deg);
}

.offer {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.section-copy {
  position: sticky;
  top: 7rem;
  max-width: 34rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 1.4rem;
  color: var(--brown);
}

.accordion {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.56);
  box-shadow: 0 28px 80px rgba(90, 66, 49, 0.08);
}

.service-panel + .service-panel {
  border-top: 1px solid var(--line);
}

.service-panel button {
  width: 100%;
  display: grid;
  grid-template-columns: 3.6rem 1fr 1.8rem;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 0 1.45rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.service-panel button span {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.42rem;
}

.service-panel button strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 600;
}

.service-panel button i {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
}

.service-panel button i::before,
.service-panel button i::after {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--brown);
  transition: transform 220ms ease;
}

.service-panel button i::after {
  transform: rotate(90deg);
}

.service-panel.is-open button i::after {
  transform: rotate(0deg);
}

.panel-content {
  display: grid;
  grid-template-columns: 1fr minmax(12rem, 0.85fr);
  gap: 1.5rem;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.45rem;
  opacity: 0;
  transition: max-height 420ms ease, opacity 320ms ease, padding 320ms ease;
}

.service-panel.is-open .panel-content {
  max-height: 24rem;
  padding-bottom: 1.45rem;
  opacity: 1;
}

.panel-content ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.55;
}

.panel-content li::before {
  content: "✓";
  margin-right: 0.65rem;
  color: var(--brown);
}

.panel-content img {
  height: 14rem;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.about {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(90deg, rgba(236, 225, 216, 0.72), rgba(255, 250, 246, 0));
}

.about-image img {
  width: 100%;
  min-height: 28rem;
  object-fit: cover;
  border-radius: 0 8rem 0 0;
  box-shadow: var(--shadow);
}

.about-copy {
  position: relative;
  max-width: 47rem;
}

.about-copy::after {
  position: absolute;
  right: 2rem;
  top: -5rem;
  z-index: -1;
  content: "V";
  color: rgba(110, 73, 52, 0.08);
  font-family: var(--serif);
  font-size: clamp(10rem, 25vw, 21rem);
  line-height: 1;
}

.traits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.traits span {
  min-height: 4.4rem;
  display: grid;
  place-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: rgba(255, 250, 246, 0.55);
}

.websites {
  display: grid;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-inline: clamp(1rem, 4vw, 3rem);
  padding: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(23, 21, 19, 0.96) 0%, rgba(23, 21, 19, 0.9) 48%, rgba(64, 45, 34, 0.8) 100%),
    url("assets/desk-detail.jpg") center / cover;
}

.websites p {
  color: rgba(255, 250, 246, 0.76);
}

.device-stack {
  position: relative;
}

.device-stack img {
  width: min(36rem, 100%);
  margin-left: auto;
  border: 10px solid #0d0d0d;
  border-radius: 18px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.36);
}

.phone-preview {
  position: absolute;
  right: 4%;
  bottom: -1.4rem;
  width: 9rem;
  min-height: 14.5rem;
  display: grid;
  align-content: center;
  gap: 1.3rem;
  padding: 1.2rem;
  border: 7px solid #0d0d0d;
  border-radius: 23px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.28);
  animation: phoneFloat 4.8s ease-in-out infinite;
}

.phone-preview span {
  font-family: var(--serif);
  font-size: 0.85rem;
}

.phone-preview strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.08;
}

.process {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.62);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.process-card:hover {
  transform: translateY(-0.55rem);
  background: rgba(255, 250, 246, 0.92);
  box-shadow: 0 28px 70px rgba(66, 45, 31, 0.12);
}

.process-card span {
  margin-bottom: auto;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 3rem;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin: 0 clamp(1rem, 4vw, 3rem) clamp(1rem, 4vw, 3rem);
  padding-block: clamp(2rem, 5vw, 4rem);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.94), rgba(255, 250, 246, 0.68)),
    url("assets/desk-detail.jpg") right center / contain no-repeat;
}

.cta h2 {
  max-width: 42rem;
}

.footer {
  display: grid;
  gap: 2rem;
  padding: clamp(2.6rem, 5vw, 4.2rem) var(--page-pad) 1.35rem;
  color: rgba(255, 250, 246, 0.9);
  background: var(--dark);
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 250, 246, 0.68);
}

.footer p {
  line-height: 1.72;
}

.brand-light span,
.brand-light small {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.35fr) 0.7fr 1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.6rem);
  border-bottom: 1px solid rgba(255, 250, 246, 0.12);
}

.footer nav,
.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-brand p {
  max-width: 28rem;
  margin: 1rem 0 0;
}

.footer strong {
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.9rem;
  margin-top: 0.35rem;
  padding: 0 1.05rem;
  border: 1px solid rgba(255, 250, 246, 0.18);
  border-radius: 4px;
  color: var(--white) !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta-primary {
  border-color: transparent;
  background: var(--brown);
}

.footer-cta::after {
  display: inline-block;
  margin-left: 0.45rem;
  content: "→";
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0;
  font-size: 0.78rem;
}

.to-top {
  position: fixed;
  z-index: 60;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--brown);
  box-shadow: 0 18px 35px rgba(66, 45, 31, 0.26);
  cursor: pointer;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 240ms ease, transform 240ms ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.8rem);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-0.7rem) rotate(-1deg);
  }
}

@keyframes arrowDrop {
  0%,
  100% {
    transform: translate(-50%, -65%) rotate(45deg);
  }
  50% {
    transform: translate(-50%, -25%) rotate(45deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes menuPanelIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes menuLinkIn {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    background: #fbf7f3;
    box-shadow: 0 10px 30px rgba(66, 45, 31, 0.05);
    backdrop-filter: none;
    transition: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    min-height: 100svh;
    justify-self: stretch;
    justify-content: start;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    display: none;
    opacity: 0;
    transition: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 5.75rem 1rem 1.5rem;
    border: 0;
    border-radius: 0;
    background: #fbf7f3;
    box-shadow: none;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 3.25rem;
    padding: 0 0.15rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1.34rem, 5.7vw, 2rem);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0;
    transform: translateY(0.35rem);
  }

  .header-cta {
    width: 100%;
    max-width: none;
    min-height: 3.15rem !important;
    margin-top: 1rem;
    padding-inline: 1.2rem;
    border-bottom: 0 !important;
    border-radius: 4px;
    font-family: var(--sans) !important;
    font-size: 0.68rem !important;
    font-weight: 850 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    white-space: nowrap;
  }

  .menu-open .site-nav {
    display: grid;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    animation: menuPanelIn 180ms ease-out both;
  }

  .menu-open .site-nav a {
    animation: menuLinkIn 220ms ease-out both;
  }

  .menu-open .site-nav a:nth-child(2) {
    animation-delay: 30ms;
  }

  .menu-open .site-nav a:nth-child(3) {
    animation-delay: 60ms;
  }

  .menu-open .site-nav a:nth-child(4) {
    animation-delay: 90ms;
  }

  .menu-open .site-nav a:nth-child(5) {
    animation-delay: 120ms;
  }

  .menu-open .site-nav a:nth-child(6) {
    animation-delay: 150ms;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(0.47rem) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-0.47rem) rotate(-45deg);
  }

  .hero,
  .offer,
  .about,
  .websites,
  .cta {
    grid-template-columns: 1fr;
  }

  .footer-intro,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .hero-side,
  .scroll-cue {
    display: none;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    width: 100%;
    height: min(62vw, 32rem);
    min-height: 25rem;
    object-position: center;
    border-radius: 0 0 0 5rem;
  }

  .section-copy {
    position: relative;
    top: 0;
  }

  .traits,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 82% 6%, rgba(168, 135, 112, 0.16), transparent 18rem),
      linear-gradient(180deg, #fbf7f3 0%, var(--paper) 48%, #fbf7f3 100%);
  }

  .site-header {
    padding: 0.85rem 1rem;
    gap: 1rem;
  }

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

  .brand small {
    font-size: 0.47rem;
    letter-spacing: 0.18em;
  }

  .menu-toggle {
    width: 2.35rem;
    height: 2.35rem;
    padding: 0.62rem;
  }

  .site-nav {
    padding: 5.6rem 1.25rem 1.5rem;
  }

  .header-cta {
    margin-top: 1rem;
  }

  h1 {
    max-width: 20rem;
    font-size: clamp(2.78rem, 13.5vw, 3.55rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.88rem, 9.2vw, 2.5rem);
    line-height: 1;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .section {
    padding-inline: var(--mobile-pad);
  }

  .hero {
    display: block;
    padding-top: 5.75rem;
    padding-bottom: 2.75rem;
  }

  .hero-copy {
    padding-inline: 0;
  }

  .hero-lead {
    max-width: 21rem;
    font-size: 0.92rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    gap: 0.72rem;
    margin-top: 1.45rem;
  }

  .hero-actions .btn-ghost,
  .cta-actions .btn-ghost {
    background: rgba(255, 250, 246, 0.92);
    border-color: rgba(110, 73, 52, 0.36);
  }

  .btn {
    width: 100%;
    min-height: 3.1rem;
    padding-inline: 1.15rem;
    font-size: 0.68rem;
  }

  .hero-visual {
    margin-top: 1.4rem;
  }

  .hero-visual img {
    height: 20.5rem;
    min-height: 0;
    object-position: 54% center;
    border-radius: 0 0 0 2.5rem;
  }

  .hero-card {
    left: 0.85rem;
    bottom: -1rem;
    width: min(15rem, calc(100% - 1.7rem));
    padding: 0.95rem;
  }

  .hero-card strong {
    font-size: 1.55rem;
  }

  .hero-card span {
    font-size: 0.76rem;
  }

  .service-strip {
    margin-top: 0.7rem;
  }

  .strip-track {
    gap: 2rem;
    padding-block: 1rem;
    animation-duration: 18s;
  }

  .strip-track span {
    font-size: 0.62rem;
  }

  .offer,
  .about,
  .process {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .offer {
    gap: 1.8rem;
  }

  .section-copy {
    max-width: 22rem;
  }

  .accordion {
    border-radius: 6px;
  }

  .panel-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-panel button {
    grid-template-columns: 2rem 1fr 1.1rem;
    min-height: 4rem;
    padding-inline: 1rem;
    gap: 0.7rem;
  }

  .service-panel button span {
    font-size: 1.05rem;
  }

  .service-panel button strong {
    font-size: 1.05rem;
    line-height: 1.14;
  }

  .service-panel.is-open .panel-content {
    max-height: 34rem;
    padding: 0 1rem 1rem;
  }

  .panel-content h3 {
    font-size: 1.14rem;
    margin-bottom: 0.65rem;
  }

  .panel-content ul {
    gap: 0.55rem;
    font-size: 0.82rem;
  }

  .panel-content img {
    height: 8rem;
    object-position: center;
  }

  .about-image img {
    min-height: 0;
    height: 23rem;
    object-position: center top;
    border-radius: 0 3rem 0 0;
  }

  .about {
    gap: 1.6rem;
  }

  .about-copy::after {
    right: -0.2rem;
    top: -2.5rem;
    font-size: 10rem;
  }

  .traits,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .traits {
    gap: 0.65rem;
    margin-top: 1.4rem;
  }

  .traits span {
    min-height: 3.4rem;
  }

  .websites {
    margin-inline: 1.25rem;
    padding: 2rem 1.2rem 2.5rem;
    gap: 1.6rem;
  }

  .device-stack img {
    border-width: 7px;
    border-radius: 12px;
  }

  .phone-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: 7.5rem;
    min-height: 11rem;
    margin: -1.2rem 0.5rem 0 auto;
    border-width: 6px;
    border-radius: 18px;
  }

  .phone-preview strong {
    font-size: 1.05rem;
  }

  .process-card {
    min-height: 13rem;
    padding: 1.15rem;
  }

  .process-card span {
    font-size: 2.1rem;
  }

  .cta {
    margin-inline: 1.25rem;
    padding: 1.65rem 1.2rem 1.2rem;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 250, 246, 0.9);
  }

  .cta h2 {
    max-width: 18rem;
    font-size: clamp(1.85rem, 8.8vw, 2.35rem);
    line-height: 1.02;
  }

  .cta p {
    max-width: 20rem;
    margin-bottom: 0;
  }

  .footer {
    gap: 1.2rem;
    padding: 1.8rem 1.25rem 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .footer-grid > div {
    gap: 0.5rem;
  }

  .footer-brand p {
    max-width: 20rem;
    margin-top: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .footer nav,
  .footer-grid > div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.85rem;
    row-gap: 0.5rem;
  }

  .footer nav strong,
  .footer-grid > div:nth-child(2) strong {
    grid-column: 1 / -1;
  }

  .footer-cta {
    width: 100%;
    min-height: 2.8rem;
  }

  .footer-bottom {
    display: grid;
    gap: 0.45rem;
    padding-top: 1rem;
    font-size: 0.72rem;
  }

  .to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}
