:root {
  color-scheme: light;
  --ink: #27312c;
  --muted: #5d6963;
  --paper: #fffdf8;
  --soft: #f4eee6;
  --coral: #c66f5e;
  --coral-dark: #9e4e42;
  --sage: #6f8b7a;
  --sage-soft: #e5eee7;
  --line: #ded7ce;
  --shadow: 0 18px 48px rgba(39, 49, 44, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(222, 215, 206, 0.82);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 0.35rem 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--coral);
  color: var(--ink);
}

.hero {
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 253, 248, 0.82) 37%, rgba(255, 253, 248, 0.18) 68%),
    url("/assets/gifts-designs-hero.webp");
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 78svh;
  padding: 5rem 5vw;
}

.hero-copy {
  min-width: 0;
  width: min(100%, 680px);
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: 4.6rem;
  line-height: 0.98;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.08;
  margin-bottom: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.hero-text {
  color: #35423b;
  font-size: 1.25rem;
  max-width: 590px;
  margin-bottom: 2rem;
  overflow-wrap: break-word;
}

.hero-actions,
.contact-panel {
  align-items: center;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: #fffdf8;
  box-shadow: var(--shadow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #111614;
}

.button-secondary {
  background: rgba(255, 253, 248, 0.78);
  border-color: rgba(39, 49, 44, 0.3);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sage-soft);
  border-color: var(--sage);
}

.section {
  padding: 5rem 5vw;
}

.section-inner {
  margin: 0 auto;
  max-width: 1120px;
  min-width: 0;
}

.intro {
  background: var(--ink);
  color: #fffdf8;
  padding: 2rem 5vw;
}

.intro-grid {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
}

.intro p:last-child {
  color: rgba(255, 253, 248, 0.85);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.intro .section-kicker {
  color: #f3b5a9;
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
  max-width: 620px;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
  padding: 1.45rem;
}

.service-card:nth-child(2) {
  background: var(--sage-soft);
}

.service-card:nth-child(3) {
  background: #fff6f1;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.process-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
}

.process-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  background: #fffdf8;
  border: 1px solid rgba(111, 139, 122, 0.34);
  border-radius: 8px;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: 64px minmax(0, 1fr);
  padding: 1.25rem;
}

.process-list span {
  align-self: start;
  background: var(--sage);
  border-radius: 6px;
  color: #ffffff;
  font-weight: 850;
  min-width: 44px;
  padding: 0.4rem 0.5rem;
  text-align: center;
}

.process-list strong {
  font-size: 1.05rem;
}

.process-list p {
  color: var(--muted);
  grid-column: 2;
  margin-bottom: 0;
}

.contact {
  background: #ffffff;
}

.contact-panel {
  background: var(--ink);
  border-radius: 8px;
  color: #fffdf8;
  justify-content: space-between;
  padding: 2rem;
}

.contact-panel > div {
  max-width: 690px;
}

.contact-panel .section-kicker {
  color: #f3b5a9;
}

.contact-panel p:last-child {
  color: rgba(255, 253, 248, 0.78);
  margin-bottom: 0;
}

.contact-panel .button-primary {
  background: #fffdf8;
  color: var(--ink);
}

.contact-panel .button-primary:hover,
.contact-panel .button-primary:focus-visible {
  background: var(--sage-soft);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.92rem;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.4rem 5vw;
}

.site-footer a {
  color: var(--ink);
  font-weight: 750;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
    justify-content: center;
    min-height: 86px;
  }

  .nav-links {
    gap: 1rem;
    overflow-x: auto;
    width: 100%;
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.86) 52%, rgba(255, 253, 248, 0.36) 100%),
      url("/assets/gifts-designs-hero.webp");
    background-position: center right 35%;
    min-height: 76svh;
    padding: 4rem 5vw 3rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.08rem;
    max-width: 100%;
  }

  .intro-grid,
  .process-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-copy,
  .section-inner {
    max-width: 358px;
    margin-left: 0;
    margin-right: 0;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .button {
    width: 100%;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list p {
    grid-column: 1;
  }

  .contact-panel {
    padding: 1.4rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
