:root {
  --ink: #25231f;
  --muted: #706b62;
  --paper: #f3eee5;
  --paper-light: #faf7f1;
  --terracotta: #a94f36;
  --terracotta-dark: #873b29;
  --line: rgba(37, 35, 31, 0.16);
  --shadow: 0 22px 60px rgba(67, 50, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(187, 126, 91, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 76%, rgba(120, 133, 103, 0.11), transparent 26rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.page-shell {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) 0 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: rise 700ms ease-out both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

.brand-logo {
  width: min(100%, 650px);
  margin: 28px auto 8px;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.intro {
  max-width: 500px;
  margin: 30px auto 32px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.etsy-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  padding: 13px 17px;
  color: #fffaf3;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 100px;
  box-shadow: 0 12px 28px rgba(135, 59, 41, 0.2);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.etsy-cta:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 16px 32px rgba(135, 59, 41, 0.26);
  transform: translateY(-2px);
}

.etsy-cta:focus-visible,
.social-card:focus-visible {
  outline: 3px solid rgba(169, 79, 54, 0.35);
  outline-offset: 4px;
}

.etsy-icon {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--terracotta);
  background: #fffaf3;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  place-items: center;
}

.etsy-cta > svg {
  width: 20px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.socials {
  margin-top: clamp(58px, 9vw, 88px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

h2 {
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.social-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px;
  color: var(--ink);
  background: rgba(250, 247, 241, 0.74);
  border: 1px solid rgba(37, 35, 31, 0.12);
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(67, 50, 33, 0.035);
  text-decoration: none;
  animation: rise 600ms calc(420ms + var(--delay)) ease-out both;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-card:hover {
  background: var(--paper-light);
  border-color: rgba(169, 79, 54, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.social-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--terracotta);
  background: rgba(169, 79, 54, 0.09);
  border-radius: 50%;
  place-items: center;
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.social-icon .fill {
  fill: currentColor;
  stroke: none;
}

.social-copy {
  min-width: 0;
}

.social-copy strong,
.social-copy small {
  display: block;
}

.social-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 400;
}

.social-copy small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-arrow {
  width: 17px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease, stroke 180ms ease;
}

.social-card:hover .card-arrow {
  stroke: var(--terracotta);
  transform: translate(2px, -2px);
}

footer {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

footer span:first-child {
  margin: 0 6px;
  color: var(--terracotta);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 28px, 760px);
    padding-top: 46px;
  }

  .brand-logo {
    width: 100%;
    margin-top: 18px;
  }

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

  .social-card {
    min-height: 84px;
  }
}

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