:root {
  --navy: #0c2239;
  --navy-soft: #31465a;
  --red: #b5232d;
  --red-dark: #8f1720;
  --ivory: #f7f3eb;
  --paper: #fffdfa;
  --stone: #e9e0d4;
  --stone-light: #f1ebe2;
  --sky: #dcecf9;
  --sky-strong: #9bc8e8;
  --camel: #b98255;
  --burgundy: #6f2430;
  --forest: #4b5a36;
  --ink-muted: #687381;
  --line: rgba(12, 34, 57, 0.14);
  --shadow: 0 26px 70px rgba(37, 44, 52, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
figure { margin: 0; }

.announcement-bar {
  min-height: 34px;
  padding: 8px clamp(22px, 5vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-soft);
  background: #eee8de;
  border-bottom: 1px solid rgba(12, 34, 57, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.35px;
}
.announcement-bar > div { display: flex; gap: 10px; align-items: center; }
.announcement-bar a:hover { color: var(--red); }

.catalog-header {
  min-height: 102px;
  padding: 0 clamp(22px, 5vw, 88px);
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 145px;
  align-items: center;
  gap: 32px;
  background: rgba(255, 253, 250, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; width: max-content; align-items: center; }
.brand__logo { width: 152px; height: auto; object-fit: contain; }
.brand--compact .brand__logo { width: 162px; }
.brand-name {
  display: inline-block;
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
}
.brand-name--inline { font-size: 0.92em; letter-spacing: 0.13em; }
.catalog-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
}
.catalog-header nav a, .mobile-navigation a {
  position: relative;
  padding: 9px 0;
  color: var(--navy-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.35px;
  white-space: nowrap;
}
.catalog-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transition: right 0.22s ease;
}
.catalog-header nav a:hover::after { right: 0; }
.header-enquire {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.mobile-navigation { display: none; }

.catalogue-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 0 31px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  color: var(--navy);
}
.catalogue-kicker > span {
  min-height: 48px;
  padding: 0 10px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
}
.catalogue-kicker .brand-name { font-size: 13px; }
.catalogue-kicker > b {
  padding-top: 7px;
  border-top: 2px solid var(--navy);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 1.45px;
}
.catalogue-kicker--page { margin-bottom: 25px; }
.catalogue-kicker--page > span { min-width: 64px; }
.catalogue-kicker--page > b { padding: 8px 4px; border-top: 0; border-bottom: 2px solid var(--navy); }

.eyebrow {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 2.15px;
  text-transform: uppercase;
}
.button {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.35px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(12, 34, 57, 0.12); }
.button--primary { color: #fff; background: var(--navy); }
.button--primary:hover { background: #17354f; }
.button--secondary { color: var(--navy); background: transparent; border-color: rgba(12, 34, 57, 0.32); }
.button--light { color: var(--navy); background: #fff; border-color: rgba(12, 34, 57, 0.12); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.home-hero {
  min-height: 720px;
  padding: 68px clamp(26px, 7vw, 116px) 72px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 15%, rgba(155, 200, 232, 0.35), transparent 25%),
    linear-gradient(118deg, #fffdfa 0%, #f8f3eb 66%, #eef5f8 100%);
}
.home-hero__copy { max-width: 650px; position: relative; z-index: 2; }
.home-hero h1,
.category-hero h1,
.contact-hero h1,
.about-hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.7vw, 98px);
  line-height: 0.96;
  letter-spacing: -5.8px;
  font-weight: 800;
}
.home-hero h1 span { color: var(--red); }
.home-hero__lead,
.category-hero__copy > p:not(.eyebrow),
.contact-hero__copy > p:not(.eyebrow),
.about-hero__copy > p:not(.eyebrow) {
  max-width: 585px;
  margin: 27px 0 32px;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.8;
}
.hero-proof {
  margin-top: 45px;
  padding-top: 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.hero-proof > div { display: grid; gap: 4px; }
.hero-proof strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.hero-proof span { color: var(--ink-muted); font-size: 9px; font-weight: 700; letter-spacing: 0.9px; text-transform: uppercase; }
.home-hero__visual { min-height: 565px; position: relative; display: grid; place-items: center; }
.hero-stone {
  width: min(100%, 585px);
  height: 550px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(233,224,212,0.76)),
    repeating-linear-gradient(25deg, transparent 0 16px, rgba(133,110,84,0.04) 17px 18px);
  border: 1px solid rgba(12, 34, 57, 0.09);
  box-shadow: var(--shadow);
}
.hero-stone::after {
  content: "";
  position: absolute;
  width: 77%;
  height: 22px;
  left: 12%;
  bottom: 35px;
  background: rgba(48, 55, 61, 0.16);
  filter: blur(19px);
  border-radius: 50%;
}
.hero-stone img { width: auto; max-width: 82%; height: 94%; object-fit: contain; position: relative; z-index: 1; }
.hero-caption {
  position: absolute;
  right: -20px;
  bottom: 37px;
  min-width: 255px;
  padding: 16px 19px;
  display: grid;
  gap: 5px;
  color: var(--navy);
  background: rgba(255,255,255,0.95);
  border-left: 4px solid var(--red);
  box-shadow: 0 15px 35px rgba(12,34,57,0.1);
  z-index: 3;
}
.hero-caption span { color: var(--red); font-size: 8px; font-weight: 850; letter-spacing: 1.5px; }
.hero-caption strong { font-size: 11px; letter-spacing: 0.75px; }

.brand-promise {
  min-height: 76px;
  padding: 20px clamp(20px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
  color: var(--navy-soft);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.brand-promise span::before { content: "◆"; margin-right: 10px; color: var(--red); font-size: 7px; }

.catalogue-showcase {
  max-width: 1580px;
  margin: 0 auto;
  padding: 112px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(430px, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
  background:
    radial-gradient(circle at 88% 14%, rgba(155, 200, 232, 0.27), transparent 30%),
    linear-gradient(118deg, #f8f3eb 0%, #fffdfa 58%, #edf5f8 100%);
  border-bottom: 1px solid var(--line);
}
.catalogue-showcase figure {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.catalogue-showcase figure img { width: 100%; }
.catalogue-file-card {
  min-height: 520px;
  padding: clamp(35px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(155, 200, 232, 0.35), transparent 26%),
    linear-gradient(145deg, #17354f 0%, #0c2239 70%);
  border: 1px solid rgba(12, 34, 57, 0.2);
  box-shadow: var(--shadow);
}
.catalogue-file-card::after {
  content: "";
  width: 245px;
  height: 245px;
  position: absolute;
  right: -78px;
  bottom: -86px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(18deg);
}
.catalogue-file-card__top { display: flex; align-items: center; justify-content: space-between; }
.catalogue-file-card__top img { width: 68px; filter: brightness(0) invert(1); }
.catalogue-file-card__top span {
  padding: 9px 11px;
  color: var(--navy);
  background: var(--sky-strong);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}
.catalogue-file-card > p {
  margin: auto 0 9px;
  color: var(--sky-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}
.catalogue-file-card h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.94;
  letter-spacing: -3.5px;
}
.catalogue-file-card__meta {
  margin-top: 34px;
  padding-top: 19px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.catalogue-showcase h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -3.4px;
}
.catalogue-showcase__copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 23px 0 29px;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.8;
}
.catalogue-section-marker { margin-bottom: 20px; display: flex; align-items: center; gap: 13px; }
.catalogue-section-marker > span {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}
.catalogue-section-marker .eyebrow { margin: 0; }

.collection-section { max-width: 1580px; margin: 0 auto; padding: 112px clamp(24px, 6vw, 96px); }
.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
}
.section-heading h2,
.quality-section__heading h2,
.brand-story h2,
.connect-intro h2,
.enquiry-intro h2,
.time-trail-home h2,
.time-trail-section h2,
.category-callout h2,
.contact-qr-section h2,
.contact-note h2,
.story-section h2,
.vision-section h2,
.about-cta h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 66px);
  line-height: 1.03;
  letter-spacing: -3.2px;
}
.section-heading > p,
.quality-section__heading > p:not(.eyebrow),
.brand-story > div:last-child > p:not(.eyebrow),
.connect-intro > p:not(.eyebrow),
.enquiry-intro > p:not(.eyebrow),
.story-section__copy p,
.vision-section p,
.contact-note > p:not(.eyebrow) {
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.82;
}

.collection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.collection-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; width: calc(50% - 14px); justify-self: center; }
.collection-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.collection-card__image { aspect-ratio: 3 / 2; overflow: hidden; background: var(--ivory); }
.collection-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.collection-card:hover .collection-card__image img { transform: scale(1.025); }
.collection-card__copy {
  min-height: 126px;
  padding: 23px 24px;
  display: grid;
  grid-template-columns: 35px 1fr 25px;
  align-items: start;
  gap: 14px;
}
.collection-card__copy > span { padding-top: 3px; color: var(--red); font-size: 9px; font-weight: 800; }
.collection-card__copy h3 { margin: 0; font-size: 22px; letter-spacing: -0.75px; }
.collection-card__copy p { margin: 7px 0 0; color: var(--ink-muted); font-size: 11px; line-height: 1.65; }
.collection-card__copy b { justify-self: end; font-size: 18px; font-weight: 500; }

.time-trail-home {
  margin: 5px clamp(24px, 5vw, 80px) 25px;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1.44fr);
  background: linear-gradient(118deg, #edf4f3 0%, #f5f1e8 100%);
  border: 1px solid rgba(12,34,57,0.1);
}
.time-trail-home__copy { padding: 48px 38px; display: grid; align-content: center; }
.time-trail-home h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 4.9vw, 78px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -3px;
  white-space: nowrap;
}
.time-trail-kicker { margin: 10px 0 14px; color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: 1.7px; }
.time-trail-home__copy > p:not(.eyebrow):not(.time-trail-kicker) { margin: 0; color: var(--navy-soft); font-size: 12px; line-height: 1.7; }
.time-trail-home figure {
  min-height: 0;
  aspect-ratio: 3 / 2;
  align-self: center;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f7f3eb;
}
.time-trail-home figure img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.size-specs { margin: 18px 0; display: grid; gap: 5px; }
.size-specs article { padding: 9px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(12,34,57,0.13); }
.size-specs strong { font-size: 12px; }
.size-specs span { color: var(--ink-muted); font-size: 10px; font-weight: 700; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; background: #fff; border: 1px solid var(--line); }
.product-card__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(235,226,214,0.8)),
    var(--ivory);
}
.product-card__visual img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.35s ease; }
.product-card:hover .product-card__visual img { transform: scale(1.035); }
.product-card__code {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  color: #fff;
  background: var(--navy);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.8px;
}
.product-card__copy { padding: 19px 18px 21px; }
.product-card__copy > div:first-child { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.product-card__type { margin: 4px 0 0; color: var(--red); font-size: 9px; font-weight: 850; letter-spacing: 0.7px; white-space: nowrap; order: 2; }
.product-card__copy h3 { margin: 0; font-size: 17px; letter-spacing: -0.4px; }
.product-card dl { margin: 18px 0 13px; display: grid; gap: 8px; }
.product-card dl > div { display: grid; grid-template-columns: 44px 1fr; gap: 7px; }
.product-card dt { color: var(--ink-muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.product-card dd { margin: 0; color: var(--navy-soft); font-size: 9px; line-height: 1.4; }
.product-card__copy > p { min-height: 34px; margin: 0 0 17px; color: var(--ink-muted); font-size: 10px; line-height: 1.6; }
.product-card__copy > a { color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: 0.25px; }

.quality-section {
  padding: 110px clamp(24px, 7vw, 112px);
  background:
    radial-gradient(circle at 8% 5%, rgba(155,200,232,0.22), transparent 30%),
    #f4efe7;
}
.quality-section__heading { max-width: 780px; }
.quality-section__heading > p:not(.eyebrow) { margin-top: 20px; max-width: 630px; }
.quality-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(12,34,57,0.13); border: 1px solid rgba(12,34,57,0.13); }
.quality-grid article { min-height: 230px; padding: 30px 25px; background: rgba(255,253,250,0.96); }
.quality-grid article > span { color: var(--red); font-family: Georgia, serif; font-size: 18px; }
.quality-grid h3 { margin: 37px 0 11px; font-size: 16px; }
.quality-grid p { margin: 0; color: var(--ink-muted); font-size: 11px; line-height: 1.72; }

.brand-story {
  max-width: 1460px;
  margin: 0 auto;
  padding: 112px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(440px, 1.3fr);
  align-items: center;
  gap: 90px;
}
.brand-story__logo { min-height: 330px; display: grid; place-items: center; background: #f5f0e8; border: 1px solid var(--line); }
.brand-story__logo img { width: min(72%, 310px); }
.brand-story > div:last-child > p:not(.eyebrow) { max-width: 620px; margin-top: 22px; }
.brand-story > div:last-child > a { display: inline-block; margin-top: 24px; color: var(--red); font-size: 12px; font-weight: 850; }

.connect-section {
  padding: 105px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: center;
  background: linear-gradient(120deg, #eef5f8, #f8f3eb 74%);
}
.connect-intro > p:not(.eyebrow) { margin: 21px 0 27px; max-width: 570px; }
.connect-details { display: grid; gap: 8px; }
.connect-details a { width: max-content; font-size: 13px; font-weight: 800; }
.connect-details address { max-width: 410px; margin-top: 7px; color: var(--navy-soft); font-size: 12px; line-height: 1.65; }
.qr-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.qr-card {
  padding: 18px;
  display: grid;
  gap: 5px;
  align-content: start;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.qr-card[href]:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(12,34,57,0.1); }
.qr-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }
.qr-grid span { margin-top: 10px; color: var(--red); font-size: 9px; font-weight: 850; letter-spacing: 1px; text-transform: uppercase; }
.qr-grid strong { font-size: 12px; }

.enquiry-section {
  padding: 105px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(450px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
  background: #fffdfa;
}
.enquiry-intro > p:not(.eyebrow) { margin-top: 20px; }
.enquiry-form { padding: 32px; background: #f4efe7; border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid label { display: grid; gap: 8px; color: var(--navy-soft); font-size: 9px; font-weight: 850; letter-spacing: 0.6px; text-transform: uppercase; }
.form-grid__wide { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(12,34,57,0.15);
  border-radius: 0;
  outline: none;
  font-size: 12px;
  text-transform: none;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--red); }
.form-grid textarea { min-height: 105px; resize: vertical; }
.enquiry-form > .button { margin-top: 19px; }
.form-success { margin-top: 17px; padding: 13px 15px; display: grid; gap: 4px; color: var(--forest); background: #edf3e9; font-size: 11px; }
.form-success a { color: var(--red); font-weight: 800; }

.category-hero {
  min-height: 620px;
  padding: 62px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  background: #f8f4ed;
}
.category-hero--sky { background: linear-gradient(118deg, #f9f5ed, #eaf3f8); }
.category-hero--burgundy { background: linear-gradient(118deg, #fbf6ef, #f1e7e8); }
.category-hero--terracotta { background: linear-gradient(118deg, #fbf6ef, #f5e9df); }
.category-hero--leather { background: linear-gradient(118deg, #faf5ed, #eee5d9); }
.category-hero--ladies { background: linear-gradient(118deg, #fbf7f1, #f2e8e3); }
.category-hero--fabric { background: linear-gradient(118deg, #fbf7f2, #efe5df); }
.category-hero__copy h1 { font-size: clamp(53px, 5.8vw, 82px); }
.category-hero__copy > p:not(.eyebrow) { margin-bottom: 30px; }
.category-hero__art { overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.category-hero__art img { width: 100%; height: auto; }

.time-trail-section {
  margin: 0 clamp(24px, 6vw, 96px) 95px;
  padding: 55px;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(540px, 1.22fr);
  align-items: center;
  gap: 58px;
  background: linear-gradient(125deg, #eff5f2, #f6f0e7);
  border: 1px solid var(--line);
}
.time-trail-section__copy > p:not(.eyebrow):not(.time-trail-line) { color: var(--navy-soft); font-size: 13px; line-height: 1.75; }
.time-trail-line { margin: 26px 0 0; color: var(--red); font-family: Georgia, serif; font-size: 15px; letter-spacing: 2px; }
.time-trail-section figure { overflow: hidden; border: 1px solid var(--line); box-shadow: 0 19px 45px rgba(12,34,57,0.09); }
.time-trail-section figure img { width: 100%; }
.category-callout {
  margin: 0 clamp(24px, 6vw, 96px) 65px;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: var(--sky);
  border-left: 5px solid var(--red);
}
.category-callout h2 { font-size: clamp(34px, 3.8vw, 54px); }
.next-collections { padding: 0 clamp(24px, 6vw, 96px) 90px; }
.next-collections > span { display: block; margin-bottom: 18px; color: var(--ink-muted); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.next-collections > div { display: flex; flex-wrap: wrap; gap: 10px; }
.next-collections a { padding: 12px 15px; background: #fff; border: 1px solid var(--line); font-size: 10px; font-weight: 800; }

.fabric-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(12,34,57,0.13);
  border: 1px solid rgba(12,34,57,0.13);
}
.fabric-model-grid article {
  min-height: 325px;
  padding: 31px 26px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.fabric-model-grid article > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}
.fabric-model-grid h3 { margin: 34px 0 22px; font-size: 19px; line-height: 1.2; }
.fabric-model-grid dl { margin: 0; display: grid; gap: 10px; }
.fabric-model-grid dl > div { display: grid; grid-template-columns: 62px 1fr; gap: 9px; }
.fabric-model-grid dt { color: var(--ink-muted); font-size: 8px; font-weight: 850; text-transform: uppercase; }
.fabric-model-grid dd { margin: 0; color: var(--navy-soft); font-size: 10px; line-height: 1.45; }
.fabric-model-grid a { margin-top: auto; padding-top: 28px; color: var(--red); font-size: 10px; font-weight: 850; }

.catalog-page-hero {
  min-height: 650px;
  padding: 70px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
  background: linear-gradient(118deg, #faf6ef, #eaf3f8);
}
.catalog-page-hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.3vw, 94px);
  line-height: 0.96;
  letter-spacing: -5.5px;
}
.catalog-page-hero > div > p:not(.eyebrow) {
  max-width: 560px;
  margin: 27px 0 32px;
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.8;
}
.catalog-page-hero figure {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.catalog-page-hero figure img { width: 100%; }
.catalog-pages-section {
  max-width: 1580px;
  margin: 0 auto;
  padding: 112px clamp(24px, 6vw, 96px);
}
.catalog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.catalog-sheet {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.catalog-sheet:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.catalog-sheet--cover { grid-column: 1 / -1; }
.catalog-sheet > a {
  display: block;
  overflow: hidden;
  background: var(--ivory);
}
.catalog-sheet > a img {
  width: 100%;
  transition: transform 0.45s ease;
}
.catalog-sheet:hover > a img { transform: scale(1.015); }
.catalog-sheet > div {
  min-height: 78px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.catalog-sheet > div > span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 16px;
}
.catalog-sheet h3 { margin: 0; font-size: 16px; }
.catalog-sheet > div > a {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
}
.catalog-download-band {
  margin: 0 clamp(24px, 6vw, 96px) 90px;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: var(--sky);
  border-left: 5px solid var(--red);
}
.catalog-download-band h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.04;
  letter-spacing: -2.7px;
}

.contact-hero, .about-hero {
  min-height: 640px;
  padding: 72px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  background: linear-gradient(118deg, #faf6ef, #edf5f8);
}
.contact-hero h1, .about-hero h1 { font-size: clamp(54px, 5.7vw, 82px); }
.contact-list { margin: 29px 0; display: grid; gap: 1px; background: rgba(12,34,57,0.12); border: 1px solid rgba(12,34,57,0.12); }
.contact-list > div { padding: 14px 16px; display: grid; grid-template-columns: 82px 1fr; gap: 8px; background: rgba(255,255,255,0.86); }
.contact-list span { color: var(--red); font-size: 9px; font-weight: 850; letter-spacing: 1px; text-transform: uppercase; }
.contact-list a, .contact-list address { font-size: 12px; line-height: 1.65; }
.contact-hero__visual, .about-hero figure { overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-hero__visual img, .about-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.contact-qr-section { padding: 105px clamp(24px, 10vw, 160px); display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: center; gap: 90px; }
.qr-grid--contact { max-width: 880px; }
.contact-note { padding: 95px clamp(24px, 18vw, 290px); text-align: center; background: var(--stone-light); }
.contact-note > p:not(.eyebrow) { max-width: 700px; margin: 21px auto 0; }

.about-hero__logo { width: 170px; margin-bottom: 30px; }
.story-section { padding: 110px clamp(24px, 8vw, 128px); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; }
.story-section__copy { display: grid; gap: 18px; }
.vision-section { padding: 0 clamp(24px, 8vw, 128px) 105px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(12,34,57,0.12); }
.vision-section article { min-height: 330px; padding: 45px; background: #f4efe7; }
.vision-section article:nth-child(2) { background: #eaf3f8; }
.vision-section span { color: var(--red); font-size: 9px; font-weight: 850; letter-spacing: 1.6px; }
.vision-section h2 { margin-top: 25px; font-size: clamp(36px, 3.5vw, 53px); }
.vision-section p { margin-top: 18px; }
.values-section { padding: 105px clamp(24px, 7vw, 112px); }
.about-cta { padding: 110px 25px; display: grid; justify-items: center; text-align: center; background: linear-gradient(118deg, #f8f3eb, #edf5f8); }
.about-cta .hero-actions { margin-top: 28px; justify-content: center; }

.catalog-footer {
  padding: 65px clamp(24px, 7vw, 112px) 25px;
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: 35px 60px;
  background: #f3eee6;
  border-top: 1px solid var(--line);
}
.footer-brand p { margin: 18px 0 6px; color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: 1.3px; }
.footer-brand small { color: var(--ink-muted); font-size: 10px; line-height: 1.6; }
.footer-links, .footer-contact, .footer-social { padding-top: 13px; display: grid; align-content: start; gap: 11px; }
.footer-links strong, .footer-contact strong, .footer-social strong { margin-bottom: 6px; font-size: 11px; }
.footer-links a, .footer-contact a, .footer-social a, .footer-contact address { color: var(--navy-soft); font-size: 10px; line-height: 1.55; }
.footer-contact address { max-width: 230px; }
.footer-social a { width: max-content; }
.footer-social a:hover, .footer-links a:hover, .footer-contact a:hover { color: var(--red); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 9px;
  letter-spacing: 0.6px;
}

.status-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: var(--ivory); }
.status-card { max-width: 620px; padding: 42px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.status-card h1 { font-size: clamp(42px, 7vw, 68px); line-height: 1; letter-spacing: -3px; }
.status-card h1 em { color: var(--red); font-style: normal; }
.status-card > p:not(.eyebrow) { color: var(--navy-soft); line-height: 1.7; }
.status-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.status-actions a, .status-actions button { padding: 12px 17px; color: #fff; background: var(--navy); border: 0; font-size: 12px; }

@media (max-width: 1180px) {
  .catalog-header { grid-template-columns: 150px minmax(0, 1fr) 120px; padding-inline: 30px; gap: 18px; }
  .brand__logo { width: 138px; }
  .catalog-header nav { gap: 17px; }
  .catalog-header nav a { font-size: 10px; }
  .home-hero { grid-template-columns: minmax(350px, 0.9fr) minmax(400px, 1.1fr); gap: 50px; }
  .hero-stone { height: 500px; }
  .product-grid, .quality-grid, .fabric-model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-footer { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 850px) {
  .announcement-bar { padding-inline: 18px; font-size: 9px; }
  .catalog-header { min-height: 88px; grid-template-columns: 1fr auto; padding-inline: 21px; }
  .catalog-header nav { display: none; }
  .brand__logo { width: 132px; }
  .header-enquire { min-height: 39px; }
  .mobile-navigation {
    min-height: 48px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 22px;
    overflow-x: auto;
    background: #fffdfa;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }
  .mobile-navigation::-webkit-scrollbar { display: none; }
  .home-hero, .category-hero, .contact-hero, .about-hero {
    min-height: auto;
    padding: 64px 28px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .catalogue-showcase { padding: 83px 25px; grid-template-columns: 1fr; gap: 42px; }
  .catalogue-file-card { min-height: 440px; }
  .home-hero h1, .category-hero h1, .contact-hero h1, .about-hero h1 { font-size: clamp(55px, 11vw, 78px); }
  .home-hero__visual { min-height: 490px; }
  .hero-stone { height: 480px; }
  .hero-caption { right: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .collection-section { padding: 83px 25px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-grid > :last-child:nth-child(odd) { grid-column: auto; width: 100%; }
  .time-trail-home { margin-inline: 25px; grid-template-columns: 1fr; }
  .time-trail-home__copy { padding: 50px 35px; }
  .time-trail-home figure { min-height: auto; }
  .quality-section, .connect-section, .enquiry-section { padding: 83px 25px; }
  .connect-section, .enquiry-section { grid-template-columns: 1fr; gap: 45px; }
  .brand-story { padding: 83px 25px; grid-template-columns: 1fr; gap: 45px; }
  .brand-story__logo { min-height: 270px; }
  .time-trail-section { margin-inline: 25px; padding: 35px; grid-template-columns: 1fr; }
  .category-callout { margin-inline: 25px; padding: 35px; display: grid; }
  .next-collections { padding-inline: 25px; }
  .catalog-page-hero { min-height: auto; padding: 64px 28px; grid-template-columns: 1fr; gap: 45px; }
  .catalog-pages-section { padding: 83px 25px; }
  .catalog-download-band { margin-inline: 25px; padding: 35px; display: grid; }
  .contact-qr-section { padding: 83px 25px; grid-template-columns: 1fr; gap: 40px; }
  .story-section { padding: 83px 25px; grid-template-columns: 1fr; gap: 30px; }
  .vision-section { padding: 0 25px 83px; grid-template-columns: 1fr; }
  .values-section { padding: 83px 25px; }
  .catalog-footer { padding: 50px 25px 22px; grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .announcement-bar { justify-content: center; }
  .announcement-bar > span { display: none; }
  .catalog-header { padding-inline: 16px; }
  .brand__logo { width: 120px; }
  .header-enquire { min-height: 38px; padding-inline: 13px; font-size: 10px; }
  .home-hero, .category-hero, .contact-hero, .about-hero { padding: 49px 18px; }
  .home-hero h1, .category-hero h1, .contact-hero h1, .about-hero h1 { font-size: 53px; letter-spacing: -3.5px; }
  .hero-proof { gap: 12px; }
  .hero-proof strong { font-size: 21px; }
  .hero-proof span { font-size: 8px; }
  .home-hero__visual { min-height: 390px; }
  .hero-stone { height: 390px; }
  .hero-caption { min-width: 215px; bottom: 18px; }
  .brand-promise { justify-content: flex-start; overflow-x: auto; font-size: 9px; }
  .collection-section, .quality-section, .connect-section, .enquiry-section, .values-section { padding: 68px 17px; }
  .catalogue-showcase { padding: 68px 17px; }
  .catalogue-showcase h2 { font-size: 42px; letter-spacing: -2.2px; }
  .section-heading h2, .quality-section__heading h2, .brand-story h2, .connect-intro h2, .enquiry-intro h2, .time-trail-section h2, .contact-qr-section h2, .contact-note h2, .story-section h2, .about-cta h2 { font-size: 40px; letter-spacing: -2px; }
  .collection-card__copy { grid-template-columns: 26px 1fr 20px; padding: 18px; }
  .collection-card__copy h3 { font-size: 19px; }
  .time-trail-home { margin: 0 16px 20px; }
  .time-trail-home__copy { padding: 38px 22px; }
  .time-trail-home h2 { font-size: 52px; }
  .product-grid, .quality-grid, .fabric-model-grid { grid-template-columns: 1fr; }
  .catalogue-file-card { min-height: 400px; padding: 30px; }
  .catalogue-file-card h3 { font-size: 48px; letter-spacing: -2.8px; }
  .product-card__visual { aspect-ratio: 1 / 0.88; }
  .quality-grid article { min-height: 190px; }
  .brand-story { padding: 68px 17px; }
  .qr-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
  .enquiry-form { padding: 20px; }
  .time-trail-section { margin-inline: 17px; padding: 23px; }
  .size-specs article { align-items: start; flex-direction: column; gap: 4px; }
  .category-callout { margin-inline: 17px; padding: 28px 23px; }
  .next-collections { padding-inline: 17px; }
  .catalog-page-hero { padding: 49px 18px; }
  .catalog-page-hero h1 { font-size: 54px; letter-spacing: -3.6px; }
  .catalog-pages-section { padding: 68px 17px; }
  .catalog-page-grid { grid-template-columns: 1fr; gap: 20px; }
  .catalog-sheet--cover { grid-column: auto; }
  .catalog-sheet > div { grid-template-columns: 28px 1fr; }
  .catalog-sheet > div > a { grid-column: 2; }
  .catalog-download-band { margin-inline: 17px; padding: 28px 23px; }
  .contact-qr-section, .story-section { padding-inline: 17px; }
  .contact-list > div { grid-template-columns: 1fr; }
  .vision-section { padding-inline: 17px; }
  .vision-section article { padding: 28px; min-height: auto; }
  .contact-note { padding: 75px 18px; }
  .about-cta { padding: 80px 18px; }
  .catalog-footer { padding-inline: 18px; grid-template-columns: 1fr; }
  .footer-brand, .footer-bottom { grid-column: auto; }
  .footer-bottom { display: grid; }
}

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