/* SELF-HOSTED FONTS */
@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans.woff2') format('woff2');
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('/assets/fonts/libre-baskerville.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('/assets/fonts/libre-baskerville-italic.woff2') format('woff2');
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

/* COLOURS AND FONTS — start here to change the site palette */
:root {
  --brand: #3e566f; /* Main banners, buttons and stripes */
  --brand-deep: #2d4157; /* Darker button hover colour */
  --ivory: #faf8f2; /* Main background and light text */
  --paper: #fffdf9; /* Light card backgrounds */
  --blue: #536e88; /* Events banner and accents */
  --pale-blue: #e1e7ea; /* Pale section backgrounds */
  --ink: #2d4054; /* Main text */
  --muted: #606975; /* Secondary text */
  --line: #d7dde1; /* Borders and dividers */
  --gold: #ddbd65; /* Focus outline on dark banners */
  --font-body: 'DM Sans', Arial, sans-serif;
  --font-display: 'Libre Baskerville', Georgia, serif;
}

/* BASE STYLES — page defaults, typography and buttons */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font: 400 17px/1.7 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
a:focus-visible.button,
.hero a:focus-visible {
  outline-color: var(--gold);
}
::selection {
  background: #dce4ed;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
}
h1,
h2 {
  line-height: 1.23;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.8rem, 4.7vw, 5rem);
}
h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.7rem);
}
h3 {
  line-height: 1.4;
  font-size: 1.35rem;
}
em {
  font-weight: 400;
}
p + p {
  margin-top: 1rem;
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 24px;
  min-height: 52px;
  background: var(--brand);
  border: 1px solid var(--brand);
  color: white;
  font-size: 0.91rem;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
}
.button-light {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--brand);
}
.button-light:hover {
  background: #e7edf2;
}
.button-outline {
  background: transparent;
  color: var(--brand);
}
.button-outline:hover {
  background: var(--brand);
  color: white;
}
.arrow {
  font-family: Arial, sans-serif;
  font-size: 1.3em;
  line-height: 1;
}
.text-link {
  font-size: 0.91rem;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  padding-block: 6px;
  line-height: 1.5;
}
.text-link:hover {
  color: var(--blue);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  background: white;
  padding: 12px;
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}

/* HEADER AND NAVIGATION */
.announcement {
  background: var(--brand);
  color: var(--ivory);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.site-header {
  position: relative;
  z-index: 10;
  background: var(--ivory);
}
.header-inner {
  min-height: 111px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--brand);
  line-height: 1;
}
.wordmark-main {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: -0.065em;
}
.wordmark-sub {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-style: italic;
  margin-top: 7px;
  letter-spacing: -0.02em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.desktop-nav > a {
  font-size: 0.83rem;
  position: relative;
  padding-block: 8px;
}
.desktop-nav > a:after {
  content: '';
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav > a:hover:after,
.desktop-nav > a[aria-current='page']:after {
  transform: scaleX(1);
}
.desktop-nav .nav-contact {
  border: 1px solid var(--brand);
  padding: 10px 19px;
  margin-left: 10px;
}
.desktop-nav .nav-contact:after {
  display: none;
}
.desktop-nav .nav-contact:hover {
  background: var(--brand);
  color: white;
}
.mobile-menu {
  display: none;
}
.menu-toggle {
  border: 1px solid var(--line);
  background: none;
  min-height: 44px;
  padding: 7px 13px;
  font-size: 0.88rem;
  list-style: none;
  cursor: pointer;
}
.menu-toggle::-webkit-details-marker {
  display: none;
}

/* HOME — main banner and photograph */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 44% 56%;
  background: var(--brand);
  color: var(--ivory);
  min-height: 590px;
  margin-bottom: 20px;
}
.hero-copy {
  padding: 75px 55px 74px max(56px, calc((100vw - 1320px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .eyebrow {
  color: #dce4ec;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.6rem, 4.3vw, 4.55rem);
  max-width: 650px;
  line-height: 1.26;
}
.hero h1 em {
  color: #e2e7ed;
}
.hero-description {
  margin-top: 23px;
  max-width: 370px;
  font-size: 1rem;
  line-height: 1.8;
  color: #e8edf1;
}
.hero .button {
  margin-top: 31px;
}
.hero-photo {
  position: relative;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;
  background: #e9e6df;
}
.hero-photo img {
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.photo-caption {
  position: absolute;
  bottom: 33px;
  right: 34px;
  background: var(--ivory);
  padding: 9px 16px;
  color: var(--brand);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: 0 2px 12px #00000008;
}
.scallop:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 16px;
  background: radial-gradient(
      circle at 16px 0,
      var(--brand) 15.5px,
      transparent 16px
    )
    0 0/32px 16px repeat-x;
}
.hero.scallop:after {
  background: radial-gradient(
      circle at 16px 0,
      transparent 15.5px,
      var(--ivory) 16px
    )
    0 0/32px 16px repeat-x;
  bottom: 0;
}

/* HOME — upcycling and handmade messages */
.values-strip {
  display: flex;
  justify-content: center;
  gap: 69px;
  align-items: center;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}
.value-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.79rem;
  letter-spacing: 0.025em;
}
.value-icon {
  width: 21px;
  height: 21px;
  stroke: var(--brand);
  stroke-width: 1.35;
  fill: none;
  flex-shrink: 0;
}

/* SHARED SECTIONS AND COLLECTION CARDS */
.section {
  padding-block: 87px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 37px;
}
.section-header .eyebrow {
  margin-bottom: 13px;
}
.section-header .text-link {
  flex-shrink: 0;
  margin-bottom: 7px;
}
.section-header p {
  max-width: 435px;
  color: var(--muted);
  font-size: 1rem;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
}
.collection-card {
  display: block;
}
.collection-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: #e9e4db;
}
.collection-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.collection-card:hover img {
  transform: scale(1.045);
}
.collection-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 17px;
}
.collection-name h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}
.collection-name .arrow {
  font-size: 1.2rem;
}
.collection-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* HOME — about Ellie preview */
.story-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--pale-blue);
  position: relative;
}
.story-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.story-photo img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}
.story-copy {
  padding: 70px clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.story-copy .eyebrow {
  color: var(--blue);
  margin-bottom: 23px;
}
.story-copy h2 {
  font-size: clamp(2.3rem, 3.1vw, 3.4rem);
  margin-bottom: 23px;
}
.story-copy p {
  max-width: 410px;
  font-size: 1rem;
}
.story-copy .text-link {
  margin-top: 25px;
}

/* DECORATIVE STRIPES */
.stripe-divider {
  height: 15px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand) 0,
    var(--brand) 14px,
    var(--ivory) 14px,
    var(--ivory) 28px
  );
}

/* HOME — portfolio photographs */
.portfolio-section .section-header h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.4rem);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}
.portfolio-photo {
  overflow: hidden;
  aspect-ratio: 1/1.12;
  background: #eae7df;
}
.portfolio-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.portfolio-photo:hover img {
  transform: scale(1.03);
}
.portfolio-note {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* SHARED EVENTS BANNER */
.events-banner {
  background: var(--blue);
  color: white;
  position: relative;
}
.events-banner:after {
  background: radial-gradient(
      circle at 16px 0,
      var(--blue) 15.5px,
      transparent 16px
    )
    0 0/32px 16px repeat-x;
}
.events-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 61px;
  gap: 40px;
}
.events-banner h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin-top: 10px;
}
.events-banner p {
  max-width: 500px;
  margin-top: 17px;
  font-size: 1rem;
  color: #edf0f2;
}
.events-banner .button {
  flex-shrink: 0;
}

/* FOOTER */
.site-footer {
  padding-top: 68px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 55px;
  padding-bottom: 47px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  align-items: flex-start;
}
.footer-brand .wordmark {
  align-items: flex-start;
}
.footer-brand .wordmark-sub {
  align-self: center;
}
.footer-brand p {
  font-size: 0.88rem;
  max-width: 285px;
  margin-top: 24px;
  color: var(--muted);
}
.footer-column .eyebrow {
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.88rem;
}
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-column p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 250px;
}
.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  padding-block: 21px;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* INNER PAGE HEADINGS */
.page-heading {
  text-align: center;
  padding: 64px 24px 47px;
}
.page-heading .eyebrow {
  margin-bottom: 18px;
}
.page-heading h1 {
  font-size: clamp(2.8rem, 4vw, 4.25rem);
}
.page-heading p {
  max-width: 610px;
  margin: 24px auto 0;
  font-size: 1.03rem;
  color: var(--muted);
}

/* COLLECTION PAGE — categories and product cards */
.collection-jumps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 56px;
}
.collection-jumps a {
  font-size: 0.88rem;
  padding: 9px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.collection-jumps a:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}
.shop-section {
  padding-block: 35px 60px;
  scroll-margin-top: 25px;
}
.shop-section + .shop-section {
  border-top: 1px solid var(--line);
  padding-top: 54px;
}
.shop-section h2 {
  font-size: 2.35rem;
}
.shop-section .section-header {
  /* Keep each description with its heading above the product grid. */
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.shop-section .section-header p {
  max-width: 65ch;
  font-size: 0.94rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.product-image {
  aspect-ratio: 4/4.6;
  background: #eeeae2;
  overflow: hidden;
}
.product-image img {
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding-top: 16px;
}
.product-info .eyebrow {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.product-info h3 {
  font-size: 1.13rem;
}
.product-info .text-link {
  margin-top: 8px;
  font-size: 0.85rem;
  border-bottom-color: var(--line);
}
.category-empty {
  background: var(--pale-blue);
  padding: 32px 36px;
  font-size: 1rem;
}
.category-empty p {
  max-width: 720px;
}

/* CONTACT PANEL */
.contact-panel {
  background: var(--pale-blue);
  padding: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-block: 30px 82px;
  scroll-margin-top: 30px;
}
.contact-panel h2 {
  font-size: 2.8rem;
  margin: 14px 0 20px;
}
.contact-panel p {
  font-size: 1rem;
  max-width: 460px;
}
.contact-details {
  border-left: 1px solid #bdc9ca;
  padding-left: 40px;
}
.contact-details .eyebrow {
  color: var(--blue);
}
.contact-details p {
  margin-top: 12px;
}
.contact-detail-link {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 20px;
}
.contact-note {
  font-size: 0.9rem !important;
  color: var(--muted);
  margin-top: 16px;
}
.enquiry-selected {
  font-size: 0.9rem;
  padding: 12px 16px;
  border: 1px solid #b9c8c8;
  margin-bottom: 22px;
}
.enquiry-selected:empty {
  display: none;
}

/* ABOUT PAGE */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 35px 90px;
}
.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e8e3d9;
}
.about-image img {
  height: 100%;
  object-fit: cover;
}
.about-copy h2 {
  font-size: 2.6rem;
  margin: 17px 0 24px;
}
.about-copy p {
  font-size: 1.03rem;
}
.about-copy .text-link {
  margin-top: 24px;
}
.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem !important;
  margin-top: 28px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-block: 52px;
  border-block: 1px solid var(--line);
  margin-bottom: 80px;
}
.principle .eyebrow {
  color: var(--blue);
  margin-bottom: 15px;
}
.principle h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.principle p {
  font-size: 0.96rem;
  color: var(--muted);
}

/* EVENTS PAGE */
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  padding-block: 25px 85px;
  align-items: center;
}
.events-image {
  aspect-ratio: 1/1.08;
  overflow: hidden;
  background: #e9e3d9;
}
.events-image img {
  height: 100%;
  object-fit: cover;
}
.event-empty {
  padding: 45px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.event-empty .eyebrow {
  color: var(--blue);
  margin-bottom: 20px;
}
.event-empty h2 {
  font-size: 2.3rem;
  margin-bottom: 23px;
}
.event-empty p {
  font-size: 1rem;
  color: var(--muted);
}
.event-empty .text-link {
  margin-top: 25px;
}
.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.event-list li {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.event-list h2 {
  font-size: 1.5rem;
  margin-block: 8px;
}
.event-list p {
  font-size: 1rem;
}
.soft-note {
  font-size: 0.85rem;
  color: var(--muted);
}
[hidden] {
  display: none !important;
}

/* RESPONSIVE LAYOUT — large screens */
@media (min-width: 1650px) {
  .hero {
    min-height: 660px;
  }
  .hero-photo {
    min-height: 660px;
  }
  .hero-copy {
    padding-right: 75px;
  }
  .hero h1 {
    font-size: 5rem;
  }
}

/* RESPONSIVE LAYOUT — smaller desktops */
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 25px;
  }
  .hero-copy {
    padding: 55px 33px;
  }
  .hero,
  .hero-photo {
    min-height: 530px;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
  .hero-description {
    font-size: 0.94rem;
  }
  .values-strip {
    gap: 32px;
  }
  .collection-grid {
    gap: 18px;
  }
  .collection-name h3 {
    font-size: 1.12rem;
  }
  .story-copy {
    padding: 46px 40px;
  }
  .story-photo {
    min-height: 520px;
  }
  .contact-panel {
    padding: 45px;
    gap: 35px;
  }
  .about-layout {
    gap: 45px;
  }
  .events-layout {
    gap: 35px;
  }
}

/* RESPONSIVE LAYOUT — tablets */
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 96px;
  }
  .wordmark-main {
    font-size: 1.9rem;
  }
  .wordmark-sub {
    font-size: 1.08rem;
  }
  .desktop-nav {
    gap: 19px;
  }
  .desktop-nav .nav-contact {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero-copy {
    padding: 45px 26px;
  }
  .hero,
  .hero-photo {
    min-height: 490px;
  }
  .hero .eyebrow {
    font-size: 0.66rem;
  }
  .hero .button {
    gap: 17px;
    padding: 12px 17px;
    font-size: 0.83rem;
  }
  .values-strip {
    gap: 21px;
    justify-content: space-between;
  }
  .value-item {
    font-size: 0.72rem;
    gap: 8px;
  }
  .value-icon {
    width: 18px;
  }
  .section {
    padding-block: 62px;
  }
  .section-header {
    gap: 24px;
  }
  .section-header p {
    max-width: 325px;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .story-copy {
    padding: 36px 27px;
  }
  .story-copy h2 {
    font-size: 2.2rem;
  }
  .story-copy p {
    font-size: 0.94rem;
  }
  .portfolio-grid {
    gap: 15px;
  }
  .events-banner-inner {
    padding-block: 45px;
    gap: 27px;
  }
  .events-banner h2 {
    font-size: 2.3rem;
  }
  .events-banner p {
    font-size: 0.94rem;
  }
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
  }
  .product-grid {
    gap: 22px;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-panel {
    padding: 35px;
    gap: 28px;
  }
  .contact-panel h2 {
    font-size: 2.3rem;
  }
  .contact-details {
    padding-left: 28px;
  }
  .about-layout {
    gap: 35px;
  }
  .about-copy h2 {
    font-size: 2.2rem;
  }
  .principles {
    gap: 25px;
  }
  .events-layout {
    gap: 25px;
  }
  .event-empty {
    padding: 30px;
  }
  .event-empty h2 {
    font-size: 2rem;
  }
}

/* RESPONSIVE LAYOUT — phones */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .announcement {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 8px 12px;
  }
  .header-inner {
    min-height: 89px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu[open] nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--ivory);
    box-shadow: 0 10px 15px #2d415710;
    border-top: 1px solid var(--line);
    padding: 15px 20px 23px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu nav a {
    font-size: 1rem;
    padding: 10px;
  }
  .mobile-menu nav a[aria-current='page'] {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 46px 26px 41px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 10.8vw, 3.8rem);
    line-height: 1.25;
  }
  .hero .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 18px;
  }
  .hero-description {
    margin-top: 18px;
    font-size: 1rem;
    max-width: 380px;
  }
  .hero .button {
    margin-top: 26px;
    font-size: 0.9rem;
    padding: 12px 21px;
    gap: 34px;
  }
  .hero-photo {
    min-height: 0;
    aspect-ratio: 1.2;
  }
  .photo-caption {
    bottom: 24px;
    right: 19px;
    font-size: 0.6rem;
    padding: 7px 11px;
  }
  .values-strip {
    padding-block: 14px;
    gap: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .value-item {
    font-size: 0.69rem;
    gap: 7px;
  }
  .value-item:last-child {
    grid-column: 1/-1;
    justify-self: center;
  }
  .section {
    padding-block: 48px;
  }
  .section-header {
    align-items: flex-start;
    gap: 22px;
    flex-direction: column;
    margin-bottom: 27px;
  }
  .section-header h2 {
    font-size: 2.15rem;
  }
  .section-header .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  .section-header .text-link {
    margin: 0;
    font-size: 0.84rem;
  }
  .collection-grid {
    gap: 27px 15px;
  }
  .collection-name {
    padding-top: 12px;
    align-items: flex-start;
  }
  .collection-name h3 {
    font-size: 1.03rem;
  }
  .collection-name .arrow {
    font-size: 1.1rem;
  }
  .collection-card p {
    font-size: 0.77rem;
    line-height: 1.5;
    margin-top: 6px;
  }
  .story-band {
    grid-template-columns: 1fr;
  }
  .story-photo {
    min-height: 0;
    aspect-ratio: 1.15;
  }
  .story-copy {
    padding: 42px 25px 47px;
  }
  .story-copy .eyebrow {
    margin-bottom: 17px;
  }
  .story-copy h2 {
    font-size: 2.45rem;
  }
  .story-copy p {
    font-size: 1rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .portfolio-photo:last-child {
    grid-column: 1/-1;
    aspect-ratio: 1.55;
  }
  .portfolio-note {
    text-align: left;
    font-size: 0.88rem;
    margin-top: 22px;
  }
  .events-banner-inner {
    display: block;
    padding-block: 40px;
  }
  .events-banner h2 {
    font-size: 2.25rem;
    max-width: 300px;
  }
  .events-banner p {
    font-size: 1rem;
  }
  .events-banner .button {
    margin-top: 26px;
    font-size: 0.86rem;
  }
  .site-footer {
    padding-top: 53px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
    padding-bottom: 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand p {
    max-width: 285px;
    margin-top: 19px;
  }
  .footer-column p {
    font-size: 0.83rem;
  }
  .footer-links {
    font-size: 0.88rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    padding-block: 22px;
    font-size: 0.71rem;
  }
  .page-heading {
    padding: 43px 22px 32px;
  }
  .page-heading .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 16px;
  }
  .page-heading h1 {
    font-size: 2.65rem;
  }
  .page-heading p {
    font-size: 1rem;
    margin-top: 19px;
  }
  .collection-jumps {
    margin-bottom: 20px;
    gap: 8px;
    padding-inline: 20px;
  }
  .collection-jumps a {
    padding: 7px 13px;
    font-size: 0.8rem;
  }
  .shop-section {
    padding-block: 25px 35px;
  }
  .shop-section + .shop-section {
    padding-top: 34px;
  }
  .shop-section h2 {
    font-size: 2rem;
  }
  .shop-section .section-header {
    gap: 13px;
  }
  .product-grid {
    gap: 28px 16px;
  }
  .product-info h3 {
    font-size: 1.02rem;
  }
  .product-info .eyebrow {
    font-size: 0.6rem;
  }
  .product-info .text-link {
    font-size: 0.79rem;
    gap: 12px;
  }
  .category-empty {
    padding: 24px;
  }
  .contact-panel {
    display: block;
    padding: 31px 25px;
    margin-block: 15px 45px;
  }
  .contact-panel h2 {
    font-size: 2.2rem;
  }
  .contact-panel p {
    font-size: 0.96rem;
  }
  .contact-details {
    border-left: 0;
    border-top: 1px solid #bdc9ca;
    padding: 26px 0 0;
    margin-top: 27px;
  }
  .contact-detail-link {
    overflow-wrap: anywhere;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 31px;
    padding-block: 12px 45px;
  }
  .about-image {
    aspect-ratio: 1/1.05;
  }
  .about-copy h2 {
    font-size: 2.15rem;
    margin-bottom: 20px;
  }
  .about-copy p {
    font-size: 1rem;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 33px;
    margin-bottom: 47px;
  }
  .principle h3 {
    margin-bottom: 8px;
  }
  .principle .eyebrow {
    margin-bottom: 9px;
  }
  .events-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 10px 45px;
  }
  .events-image {
    aspect-ratio: 1.2;
  }
  .event-empty {
    padding: 30px 25px;
  }
  .event-empty h2 {
    font-size: 2.1rem;
  }
  .stripe-divider {
    height: 12px;
  }
}

/* ACCESSIBILITY — respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
/* FINAL ADJUSTMENTS — kept in their original order to preserve the design.
   These rules override earlier defaults, including some phone styles. */

/* Three small collections keep the range simple and the photography generous. */
.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.collection-image {
  aspect-ratio: 4/4.35;
}
@media (max-width: 600px) {
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .collection-image {
    aspect-ratio: 1.16;
  }
  .collection-name h3 {
    font-size: 1.28rem;
  }
  .collection-card p {
    font-size: 0.9rem;
  }
  .portfolio-photo:last-child {
    grid-column: auto;
    aspect-ratio: 1/1.12;
  }
}
/* Keep navigation and useful labels readable, including on smaller screens. */
.announcement {
  font-size: 0.75rem;
}
.desktop-nav > a {
  font-size: 0.9rem;
}
.eyebrow,
.product-info .eyebrow {
  font-size: 0.75rem;
}
.photo-caption {
  font-size: 0.75rem;
}
.footer-bottom {
  font-size: 0.8rem;
}
.product-image {
  aspect-ratio: 3/2;
}
@media (max-width: 600px) {
  .announcement {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }
  .hero .eyebrow,
  .section-header .eyebrow,
  .page-heading .eyebrow,
  .product-info .eyebrow {
    font-size: 0.75rem;
  }
  .photo-caption {
    font-size: 0.75rem;
  }
  .value-item {
    font-size: 0.8rem;
  }
  .values-strip {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding-block: 18px;
  }
  .value-item:last-child {
    grid-column: auto;
  }
  .product-info .text-link {
    font-size: 0.875rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
  .shop-section .product-grid {
    grid-template-columns: 1fr;
  }
  .product-info h3 {
    font-size: 1.18rem;
  }
  .product-info .text-link {
    margin-top: 7px;
  }
  .product-grid {
    gap: 30px;
  }
  .collection-image img {
    object-position: center;
  }
}
.story-copy .eyebrow,
.contact-details .eyebrow {
  color: #455e77;
}
.collection-jumps a {
  font-size: 1rem;
}
.product-info .eyebrow {
  font-size: 0.875rem;
}
@media (max-width: 600px) {
  .product-info .text-link {
    font-size: 1rem;
  }
  .collection-jumps a {
    font-size: 1rem;
  }
  .product-info .eyebrow {
    font-size: 0.875rem;
  }
}
