@font-face {
  font-family: "Caveat";
  src: url("assets/fonts/caveat-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/nunito-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/nunito-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/nunito-latin-800-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #3a3938;
  --muted: #716a67;
  --paper: #fdfaf6;
  --cream: #f6e6d3;
  --sage: #7d8c72;
  --sage-dark: #4d6256;
  --rose: #e83d8d;
  --rose-dark: #b92f6f;
  --blush: #edb4ca;
  --coral: #d97850;
  --gold: #eda747;
  --blue: #6b7c91;
  --line: rgba(58, 57, 56, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --hand: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  --sans: "Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 24px;
  background: #445b51;
  color: #fff;
  text-align: center;
}
.announcement p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  min-height: 94px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50% 50% 47% 53% / 51% 48% 52% 49%;
  border: 2px solid var(--blush);
  background: #fff9f5;
  box-shadow: 0 5px 16px rgba(232, 61, 141, 0.09);
  color: var(--rose);
  font-family: var(--hand);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  transform: rotate(-4deg);
}
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong {
  color: var(--rose);
  font-family: var(--hand);
  font-size: 31px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.025em;
}
.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
nav a {
  position: relative;
  padding: 8px 0;
  color: #5f5c59;
  font-size: 13px;
  font-weight: 700;
}
nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--rose);
  transition: transform 180ms ease;
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid rgba(232, 61, 141, 0.48);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #b9266a;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.header-cta:hover, .header-cta:focus-visible {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

.hero,
.bailey-home {
  width: min(1440px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 660px;
  display: flex;
  align-items: center;
  padding: 58px clamp(48px, 6vw, 86px);
  border-radius: 4px;
  background: #f5efe8;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 250, 246, 0.98) 0%, rgba(253, 250, 246, 0.94) 27%, rgba(253, 250, 246, 0.79) 41%, rgba(253, 250, 246, 0.16) 61%, rgba(253, 250, 246, 0) 72%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero-copy { position: relative; z-index: 2; flex: 0 0 min(625px, 50%); width: min(625px, 50%); }
.eyebrow {
  margin: 0 0 18px;
  color: #536c5b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1 {
  max-width: 670px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(50px, 5.35vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.hero h1 {
  margin-bottom: 9px;
  font-size: clamp(48px, 4.25vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1;
}
.hero-secondary {
  max-width: 570px;
  margin: 0 0 26px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(43px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.hero-secondary-script {
  font-family: var(--hand);
  font-size: 1.08em;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.hero-secondary .hero-heart {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--hand);
  font-size: 0.92em;
  transform: rotate(-9deg);
}
h1 em {
  color: var(--rose);
  font-family: var(--hand);
  font-size: 1.08em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.hero-intro {
  max-width: 610px;
  margin-bottom: 24px;
  color: #68625f;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.68;
}
.hero-intro p { margin-bottom: 16px; }
.hero-intro p:last-child { margin-bottom: 0; }
.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary {
  background: var(--sage-dark);
  box-shadow: 0 10px 24px rgba(77, 98, 86, 0.18);
  color: #fff;
}
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 14px 30px rgba(77, 98, 86, 0.26); }
.button-secondary { border-color: rgba(232, 61, 141, 0.24); background: rgba(255, 249, 245, 0.76); }
.external-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.external-note span { margin-right: 7px; color: var(--sage-dark); font-size: 14px; }
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin: 31px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.hero-notes li::before { content: "✓"; margin-right: 8px; color: var(--sage); font-weight: 900; }

.hero-art { position: relative; height: 520px; isolation: isolate; }
.hero-art::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 10px 0 0 52px;
  border-radius: 49% 51% 45% 55% / 43% 47% 53% 57%;
  background: #edf1e8;
  transform: rotate(2deg);
}
.hero-art::after {
  content: "";
  position: absolute;
  z-index: -3;
  width: 170px;
  height: 270px;
  top: 28px;
  right: -10px;
  border-radius: 50%;
  border: 1px solid rgba(232, 61, 141, 0.24);
  transform: rotate(15deg);
}
.watercolour {
  position: absolute;
  z-index: -1;
  border-radius: 46% 54% 39% 61% / 58% 46% 54% 42%;
  filter: blur(2px);
  opacity: 0.8;
}
.watercolour-one {
  width: 260px; height: 210px; top: 34px; left: 8px;
  background: rgba(235, 93, 154, 0.22); transform: rotate(-13deg);
}
.watercolour-two {
  width: 270px; height: 180px; right: 10px; bottom: 24px;
  background: rgba(237, 167, 71, 0.2); transform: rotate(8deg);
}
.product-card {
  position: absolute;
  overflow: hidden;
  border: 11px solid #fff;
  background: #f6e6d3;
  box-shadow: 0 22px 60px rgba(49, 67, 60, 0.16);
}
.product-card-back { width: 245px; height: 310px; top: 42px; left: 68px; transform: rotate(-7deg); }
.mini-label { position: absolute; top: 17px; left: 21px; color: #7b4b5f; font-family: var(--hand); font-size: 19px; font-weight: 600; }
.landscape-lines { position: absolute; right: -20px; bottom: -5px; left: -20px; height: 78%; }
.landscape-lines i { position: absolute; display: block; border-radius: 50% 50% 0 0; }
.landscape-lines i:nth-child(1) { width: 260px; height: 150px; right: -70px; bottom: 0; background: #93a180; }
.landscape-lines i:nth-child(2) { width: 240px; height: 125px; left: -70px; bottom: 0; background: #6b7c91; }
.landscape-lines i:nth-child(3) { width: 40px; height: 40px; right: 37px; bottom: 143px; border-radius: 50%; background: var(--gold); }
.mug {
  position: absolute;
  z-index: 3;
  width: 235px;
  height: 278px;
  right: 77px;
  bottom: 37px;
  border-radius: 11px 11px 38px 38px / 7px 7px 22px 22px;
  background: linear-gradient(105deg, #fafafa 0%, #fff 66%, #e6e3de 100%);
  box-shadow: 0 27px 60px rgba(49, 67, 60, 0.21);
  transform: rotate(5deg);
}
.mug::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 108px;
  top: 46px;
  right: -68px;
  border: 22px solid #efeeeb;
  border-left-width: 16px;
  border-radius: 50%;
}
.mug::after {
  content: "";
  position: absolute;
  height: 16px;
  inset: -6px 4px auto;
  border-radius: 50%;
  background: #dedbd4;
  box-shadow: inset 0 5px 0 #b6b0a7;
}
.mug-art {
  position: absolute;
  top: 59px;
  right: 23px;
  left: 23px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 19px;
  border: 1px solid rgba(232, 61, 141, 0.2);
  border-radius: 49% 51% 44% 56% / 55% 45% 55% 45%;
  background: rgba(237, 180, 202, 0.2);
  color: var(--sage-dark);
}
.mug-art strong { font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; }
.mug-art small { font-size: 9px; font-style: italic; }
.paw { position: absolute; width: 34px; height: 30px; top: 38px; border-radius: 50% 50% 43% 43%; background: var(--rose); }
.paw-one, .paw-two, .paw-three, .paw-four { width: 14px; height: 17px; top: 20px; }
.paw-one { left: 57px; transform: rotate(-25deg); }
.paw-two { left: 77px; top: 13px; transform: rotate(-7deg); }
.paw-three { right: 59px; top: 15px; transform: rotate(9deg); }
.paw-four { right: 41px; transform: rotate(25deg); }
.coaster {
  position: absolute;
  z-index: 4;
  width: 145px;
  height: 145px;
  right: 8px;
  bottom: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid #fff;
  border-radius: 50%;
  background: #60788a;
  box-shadow: 0 18px 35px rgba(49, 67, 60, 0.22);
  color: #fff;
  text-align: center;
  transform: rotate(10deg);
}
.coaster span { font-family: var(--hand); font-size: 16px; font-weight: 600; }
.coaster strong { margin-top: 2px; font-size: 15px; letter-spacing: 0.08em; line-height: 1.08; }
.maker-tag {
  position: absolute;
  z-index: 5;
  top: 61px;
  right: 17px;
  width: 137px;
  padding: 13px 17px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 25px rgba(49, 67, 60, 0.13);
  transform: rotate(7deg);
}
.maker-tag::before {
  content: ""; position: absolute; width: 18px; height: 18px; top: 50%; left: -9px;
  border-radius: 50%; background: var(--paper); transform: translateY(-50%);
}
.maker-tag span, .maker-tag strong { display: block; }
.maker-tag span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.maker-tag strong { color: var(--rose); font-family: var(--hand); font-size: 23px; font-weight: 600; }

.bailey-home {
  width: min(
    calc(1440px - clamp(48px, 6vw, 86px) - clamp(48px, 6vw, 86px)),
    calc(100% - 48px - clamp(48px, 6vw, 86px) - clamp(48px, 6vw, 86px))
  );
  min-height: 275px;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 2.75fr;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f7f3ed 0%, #f8f5f0 62%, #f4f1eb 100%);
}
.bailey-home-image { position: relative; min-width: 0; min-height: 0; overflow: hidden; }
.bailey-home-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 31%;
}
.bailey-home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}
.bailey-home-copy h2 {
  margin-bottom: 6px;
  font-size: clamp(32px, 2.7vw, 40px);
  line-height: 1;
}
.bailey-home-copy h2 span { color: var(--rose); font-family: var(--sans); font-size: 0.58em; }
.bailey-role {
  margin-bottom: 14px;
  color: var(--rose);
  font-family: var(--hand);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.bailey-home-copy > p:not(.bailey-role) {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}
.bailey-home-copy .button { min-height: 40px; padding: 8px 17px; }
.bailey-values { display: grid; grid-template-columns: repeat(4, 1fr); }
.bailey-values article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.bailey-values article:last-child { border-right: 0; }
.bailey-values svg {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  fill: none;
  stroke: var(--rose);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.bailey-values article:nth-child(even) svg { stroke: var(--sage-dark); }
.bailey-values h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}
.bailey-values p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.product-ribbon {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 29px;
  padding: 18px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8eee2;
  color: #625d59;
  font-family: var(--hand);
  font-size: 24px;
  font-weight: 600;
}
.product-ribbon i { color: var(--rose); font-size: 10px; }

.shop-links-panel {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 48px;
  text-align: center;
  scroll-margin-top: 24px;
}
.shop-links-eyebrow {
  margin-bottom: 18px;
  color: var(--rose);
  font-family: var(--hand);
  font-size: clamp(54px, 4.75vw, 67px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: none;
}
.shop-link-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.shop-link-actions .button {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  font-size: 13px;
  padding-block: 10px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
.shop-links-panel .external-note { text-align: center; }

.section { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 112px 0; }
.collections.section { padding-top: 16px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.67fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 43px;
}
h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}
.collection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.collection-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.48);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.collection-card:hover, .collection-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(49, 67, 60, 0.11);
}
.collection-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  align-self: start;
  background: var(--visual-bg);
}
.collection-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}
.collection-visual-photo .collection-number {
  padding: 3px 8px;
  border: 1px solid rgba(58, 57, 56, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(5px);
}
.collection-number {
  position: absolute; z-index: 3; top: 17px; left: 18px;
  color: rgba(58, 57, 56, 0.55); font-family: var(--hand); font-size: 17px; font-weight: 600;
}
.wash, .motif { position: absolute; display: block; }
.wash-a {
  width: 180px; height: 180px; right: -36px; bottom: -41px;
  border-radius: 50% 42% 53% 47%; background: var(--wash-a); opacity: 0.8; transform: rotate(16deg);
}
.wash-b {
  width: 118px; height: 150px; top: 38px; left: 34px;
  border-radius: 48% 52% 42% 58%; background: var(--wash-b); opacity: 0.68; transform: rotate(-18deg);
}
.motif-a {
  width: 115px; height: 115px; top: 78px; left: 67px;
  border: 1px solid rgba(38, 51, 47, 0.34); border-radius: 47% 53% 47% 53%; transform: rotate(9deg);
}
.motif-b {
  width: 55px; height: 55px; right: 28px; bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.62); border-radius: 50%;
}
.collection-accent {
  position: absolute; z-index: 2; right: -25px; bottom: 46px; width: 205px;
  color: rgba(58, 57, 56, 0.68); font-family: var(--hand); font-size: 19px; font-weight: 600;
  transform: rotate(-90deg);
}
.collection-copy { display: flex; flex-direction: column; justify-content: center; padding: 37px 34px; }
.collection-copy h3 {
  margin-bottom: 13px; font-family: var(--serif); font-size: 27px;
  font-weight: 500; letter-spacing: -0.025em; line-height: 1.12;
}
.collection-copy p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 19px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.collection-card:hover .collection-link, .collection-card:focus-visible .collection-link { color: var(--rose-dark); }
.collection-pets { --visual-bg: #f3d3cf; --wash-a: #eb5d9a; --wash-b: #edb4ca; }
.collection-wildlife { --visual-bg: #e2e8dc; --wash-a: #76876b; --wash-b: #b8c6a7; }
.collection-wales { --visual-bg: #dfe5e9; --wash-a: #6b7c91; --wash-b: #b7cad1; }
.collection-cosy { --visual-bg: #f6e6d3; --wash-a: #d97850; --wash-b: #eda747; }

.about { width: 100%; max-width: none; padding: 0; background: #eef1e8; }
.about-panel {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
  padding: 110px 0;
}
.about-art {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 4px;
  background: #e4e8dc;
}
.about-workbench {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.sun-disc {
  position: absolute; width: 160px; height: 160px; top: 72px; right: 55px;
  border-radius: 50%; background: rgba(230, 193, 124, 0.8); box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.16);
}
.hill { position: absolute; right: -15%; bottom: -95px; left: -15%; border-radius: 50% 50% 0 0; }
.hill-back { height: 310px; background: #9daa8b; transform: rotate(8deg); }
.hill-front { height: 245px; bottom: -80px; background: #5d7163; transform: rotate(-5deg); }
.studio-card {
  position: absolute;
  z-index: 4;
  top: 44%;
  left: 50%;
  width: 245px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 8px solid rgba(255, 255, 255, 0.78);
  background: #fff9f4;
  box-shadow: 0 25px 45px rgba(38, 51, 47, 0.18);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-4deg);
}
.studio-card small { color: var(--rose); font-family: var(--hand); font-size: 20px; font-weight: 600; }
.studio-card strong { font-family: var(--serif); font-size: 27px; font-weight: 500; }
.studio-card span { margin-top: 8px; color: var(--rose); font-size: 8px; font-weight: 800; letter-spacing: 0.18em; }
.about-copy h2 { max-width: 650px; margin-bottom: 29px; }
.about-copy > p:not(.eyebrow) {
  max-width: 620px; margin-bottom: 17px; color: #68625f;
  font-family: var(--sans); font-size: 16px; line-height: 1.8;
}
.maker-points {
  display: flex; flex-wrap: wrap; gap: 17px 28px; margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(38, 51, 47, 0.15);
}
.maker-points span { color: #4e5d57; font-size: 11px; font-weight: 800; letter-spacing: 0.02em; }
.maker-points b { margin-right: 7px; color: var(--rose); font-family: var(--serif); font-style: italic; }

.shop { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 80px; align-items: start; }
.shop-intro { position: sticky; top: 30px; }
.shop-intro h2 { margin-bottom: 23px; }
.shop-intro > p:last-child {
  color: var(--muted); font-family: var(--sans); font-size: 16px; line-height: 1.75;
}
.shop-options { display: grid; gap: 18px; }
.shop-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 42px 47px;
  border-radius: 3px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.shop-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -62px;
  bottom: -108px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.06), 0 0 0 58px rgba(255, 255, 255, 0.05);
}
.shop-card:hover, .shop-card:focus-visible { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(38, 51, 47, 0.15); }
.shop-numonday { background: var(--sage-dark); color: #fff; }
.shop-ebay { background: #f3d3cf; color: var(--ink); }
.shop-kicker { margin-bottom: 8px; font-size: 9px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.72; }
.shop-card > strong { margin-bottom: 10px; font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: -0.025em; }
.shop-card p { max-width: 460px; margin-bottom: 24px; font-size: 13px; line-height: 1.7; opacity: 0.82; }
.shop-link { width: fit-content; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; }
.shop-link b { margin-left: 8px; }

.personalise {
  width: min(1160px, calc(100% - 48px));
  margin-bottom: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(120deg, #60788a, #465f69);
  box-shadow: inset 8px 0 0 var(--rose);
  color: #fff;
}
.personalise-image-wrap { min-height: 450px; overflow: hidden; }
.personalise-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.personalise-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px 60px; }
.personalise .eyebrow { color: #ffd9e8; }
.personalise h2 { max-width: 610px; font-size: clamp(34px, 3.6vw, 49px); }
.personalise-copy > p:not(.eyebrow) { margin: 24px 0 30px; font-family: var(--sans); font-size: 15px; line-height: 1.75; opacity: 0.9; }
.personalise-copy .button { align-self: flex-start; }
.button-light { background: #fff9f5; color: #a81f60; white-space: nowrap; }

footer {
  width: min(1240px, calc(100% - 48px));
  min-height: 210px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
footer > p { margin: 0; color: var(--muted); font-family: var(--hand); font-size: 19px; font-weight: 600; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; font-size: 11px; font-weight: 800; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--rose); }
footer > small {
  grid-column: 1 / -1; color: #8a928f; font-size: 9px; letter-spacing: 0.08em; text-align: center; text-transform: uppercase;
}

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

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: 620px; aspect-ratio: auto; padding-right: 40px; padding-left: 40px; }
  .hero-copy { flex-basis: min(550px, 56%); width: min(550px, 56%); }
  .hero h1 { font-size: clamp(45px, 5.4vw, 57px); }
  .hero-secondary { font-size: clamp(41px, 5.1vw, 54px); }
  .bailey-home { width: min(1360px, calc(100% - 128px)); grid-template-columns: 0.82fr 1.18fr; }
  .bailey-home-image { min-height: 300px; }
  .bailey-home-copy { border-right: 0; }
  .bailey-values { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .bailey-values article { min-height: 190px; }
  .hero-art { transform: scale(0.88); transform-origin: center right; }
  .collection-card { grid-template-columns: 0.78fr 1.22fr; }
  .about-panel { gap: 55px; }
  .shop { gap: 45px; }
  .personalise { grid-template-columns: 1fr 0.9fr; }
  .personalise-copy { padding: 48px 42px; }
}

@media (max-width: 800px) {
  .site-header, .hero, .bailey-home, .shop-links-panel, .section, .about-panel, .personalise, footer { width: min(100% - 32px, 650px); }
  .site-header { min-height: 80px; }
  .brand small { display: none; }
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 58px 0 0;
    background: #fff;
  }
  .hero::before { content: none; }
  .hero-photo {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: 350px;
    margin-top: 42px;
    object-position: 72% bottom;
  }
  .hero-copy { order: 1; flex: 0 0 auto; width: 100%; padding: 0 18px; }
  .hero-copy { text-align: center; }
  .hero-intro { margin-right: auto; margin-left: auto; }
  .hero-notes { justify-content: center; }
  .external-note { text-align: center; }
  .shop-link-actions { grid-template-columns: 1fr; }
  .bailey-home { grid-template-columns: 1fr; }
  .bailey-home-image { min-height: 340px; }
  .bailey-home-copy { align-items: center; padding: 40px 32px; border-top: 1px solid var(--line); text-align: center; }
  .bailey-values { grid-column: auto; grid-template-columns: repeat(2, 1fr); }
  .bailey-values article:nth-child(2) { border-right: 0; }
  .bailey-values article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .hero-art { width: min(540px, 100%); margin: -8px auto 0; transform: none; }
  .section { padding: 85px 0; }
  .section-heading, .collection-grid, .about-panel, .shop, .personalise { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .collection-card { grid-template-columns: 0.82fr 1.18fr; }
  .about { width: 100%; }
  .about-panel { gap: 48px; padding: 80px 0; }
  .about-art { max-width: 500px; height: 430px; margin: 0 auto; }
  .shop { gap: 40px; }
  .shop-intro { position: static; }
  .personalise { margin-bottom: 58px; grid-template-columns: 1fr; }
  .personalise-image-wrap { min-height: 330px; }
  .personalise-copy { padding: 48px 40px; }
  .button-light { width: fit-content; }
  footer { grid-template-columns: 1fr; justify-items: center; gap: 25px; padding: 54px 0 35px; }
  footer > p { text-align: center; }
  .footer-links { justify-content: center; }
  footer > small { grid-column: auto; }
}

@media (max-width: 560px) {
  .announcement p { font-size: 9px; letter-spacing: 0.11em; }
  .site-header { width: calc(100% - 24px); }
  .brand strong { font-size: 18px; }
  .brand-mark { width: 38px; height: 38px; }
  .header-cta { padding: 9px 12px; font-size: 10px; }
  .hero, .bailey-home, .shop-links-panel { width: calc(100% - 32px); }
  .hero-copy { padding: 0 6px; }
  .hero-photo { height: 300px; margin-top: 34px; object-position: 73% bottom; }
  h1 { font-size: clamp(43px, 13.5vw, 60px); }
  .hero h1 { font-size: clamp(41px, 12vw, 54px); }
  .hero-secondary { font-size: clamp(38px, 11.5vw, 50px); }
  .hero-intro { font-size: 16px; }
  .shop-link-actions .button { width: 100%; }
  .hero-notes { gap: 9px 18px; }
  .hero-art {
    height: 395px; margin-top: 8px; transform: scale(0.76); transform-origin: center top; margin-bottom: -82px;
  }
  .product-ribbon { gap: 8px 15px; font-size: 17px; }
  .bailey-home-image { min-height: 300px; }
  .bailey-home-copy { padding: 36px 24px; }
  .bailey-values { grid-template-columns: 1fr; }
  .bailey-values article,
  .bailey-values article:nth-child(2) { min-height: 0; padding: 32px 26px; border-right: 0; border-bottom: 1px solid var(--line); }
  .bailey-values article:last-child { border-bottom: 0; }
  .collection-card { grid-template-columns: 1fr; }
  .collection-visual { min-height: 0; }
  .collection-copy { padding: 28px; }
  .about-art { height: 390px; }
  .shop-card { min-height: 235px; padding: 34px 30px; }
  .shop-card > strong { font-size: 29px; }
  .personalise { width: 100%; margin-bottom: 45px; }
  .personalise-image-wrap { min-height: 280px; }
  .personalise-copy { padding: 44px 24px 48px; }
  .button-light { width: 100%; }
  .footer-links { flex-wrap: wrap; }
}

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