:root {
  --paper: #f5f0e8;
  --soft: #eee8e1;
  --ink: #252525;
  --muted: #6d6964;
  --line: #d9d1c7;
  --white: #fffaf3;
  --accent: #96745a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

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

.site-header,
.site-footer {
  min-height: 116px;
  background: #fbf6ed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 24px clamp(22px, 5vw, 58px);
  position: relative;
  z-index: 5;
}

.site-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(37, 37, 37, 0.04);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.86;
  letter-spacing: 0;
  min-width: 168px;
}

.brand-main {
  font-size: 52px;
  font-weight: 700;
}

.brand-sub {
  color: #8a8a87;
  font-size: 44px;
  font-weight: 600;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  min-height: calc(100vh - 116px);
  position: relative;
  overflow: hidden;
  background: #d1d5d0;
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0.12) 52%, rgba(0, 0, 0, 0.12));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(470px, calc(100% - 44px));
  margin-left: auto;
  padding: 118px clamp(24px, 5vw, 72px) 80px 0;
  color: var(--white);
  text-align: right;
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: 108px;
  right: clamp(16px, 3.3vw, 44px);
  width: 3px;
  height: 210px;
  background: rgba(255, 255, 255, 0.86);
}

.hero h1 {
  margin: 0 26px 18px 0;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 400;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 18px 8px;
  font-size: 17px;
  text-transform: lowercase;
  background: rgba(245, 240, 232, 0.06);
  transition: background 180ms ease, color 180ms ease;
}

.pill-button:hover {
  background: var(--ink);
  color: var(--white);
}

.pill-button.dark {
  background: var(--ink);
  color: var(--white);
}

.pill-button.dark:hover {
  background: transparent;
  color: var(--ink);
}

.slide-arrow {
  position: absolute;
  top: 66%;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
}

.slide-arrow.left {
  left: 9vw;
  transform: rotate(45deg);
}

.slide-arrow.right {
  right: 10vw;
  transform: rotate(225deg);
}

.intro-section,
.collections-section,
.services-section {
  padding: 96px clamp(22px, 7vw, 108px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(260px, 0.95fr) minmax(280px, 1.4fr);
  gap: 64px;
  align-items: center;
  background: #f3eee8;
}

.section-mark {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.96;
  text-align: right;
}

.section-mark span {
  display: block;
  font-size: 58px;
}

.section-mark strong {
  display: block;
  color: #2d2d2b;
  font-size: 68px;
}

.intro-image img {
  aspect-ratio: 375 / 501;
  object-fit: cover;
}

.intro-copy {
  max-width: 720px;
  color: #3a3937;
}

.intro-copy h2,
.collections-copy h2,
.services-section h2 {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 500;
}

.intro-copy p {
  margin: 0 0 22px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  text-transform: lowercase;
}

.collections-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(260px, 0.7fr);
  gap: 76px;
  align-items: center;
  background: #fffaf3;
}

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

.product-grid a,
.product-grid article {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.product-grid a {
  display: block;
  cursor: pointer;
}

.product-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34%;
  height: 88px;
  background: rgba(0, 0, 0, 0.78);
}

.product-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-grid span {
  position: absolute;
  left: 0;
  right: 0;
  top: 34%;
  z-index: 1;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.product-grid a:hover img {
  transform: scale(1.035);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.collections-copy p,
.services-section p {
  color: #4c4945;
}

.services-section {
  background: #f3eee8;
  text-align: center;
}

.services-section h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 74px;
  line-height: 0.94;
  text-transform: uppercase;
}

.services-section h2 span {
  color: #8a8a87;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  max-width: 1050px;
  margin: 48px auto 0;
  text-align: left;
}

.service-grid h3 {
  margin: 0 0 14px;
  font-size: 16px;
  text-transform: uppercase;
}

.service-grid p {
  margin: 0;
}

.site-footer {
  min-height: 104px;
}

.products-page {
  background: #fffaf3;
}

.products-hero {
  padding: 86px clamp(22px, 7vw, 108px) 56px;
  background: #f3eee8;
}

.products-hero h1 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
}

.products-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 22px;
  color: #4c4945;
}

.product-listing {
  padding: 66px clamp(22px, 7vw, 108px) 96px;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.enquiry-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.enquiry-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f6f2ec;
}

.enquiry-card div {
  padding: 20px;
}

.enquiry-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.enquiry-card p {
  margin: 0 0 16px;
  color: #4c4945;
}

.enquiry-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.contact-body {
  background: var(--paper);
}

.contact-header {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(22px, 12vw, 210px);
  background: #fbf6ed;
  border-bottom: 1px solid rgba(37, 37, 37, 0.04);
  box-shadow: 0 8px 22px rgba(37, 37, 37, 0.06);
}

.compact-brand .brand-main {
  font-size: 32px;
}

.compact-brand .brand-sub {
  font-size: 27px;
}

.back-link {
  font-weight: 600;
  color: #293244;
}

.contact-page {
  min-height: calc(100vh - 102px);
  padding: 60px clamp(22px, 12vw, 210px) 90px;
  background: var(--paper);
}

.contact-page > h1 {
  margin: 0 0 38px;
  text-align: center;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-info h2,
.message-form h2 {
  margin: 0 0 28px;
  font-size: 25px;
  line-height: 1.2;
  color: var(--ink);
}

.message-form h2 {
  color: var(--accent);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 49px;
  height: 49px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 auto;
}

.contact-icon.blue {
  background: #2f3a35;
}

.contact-icon.green {
  background: #7d8a75;
}

.contact-icon.purple {
  background: var(--accent);
}

.contact-method p {
  margin: 0 0 2px;
  color: #667085;
  font-size: 14px;
}

.contact-method a,
.contact-method strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.contact-method strong {
  color: var(--ink);
}

.contact-note,
.message-form {
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(37, 37, 37, 0.08);
}

.contact-note {
  margin-top: 28px;
  padding: 26px 24px;
}

.contact-note h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 17px;
}

.contact-note p {
  margin: 0;
  color: #344054;
}

.message-form {
  padding: 34px 32px 32px;
}

.message-form label {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.message-form input,
.message-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d9dee8;
  border-radius: 12px;
  background: #fbf6ed;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(150, 116, 90, 0.14);
}

.message-form textarea {
  resize: vertical;
  min-height: 122px;
}

.consent-row {
  display: grid !important;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 400 !important;
  color: #344054 !important;
}

.consent-row input {
  margin: 3px 0 0;
  width: 13px;
  height: 13px;
}

.send-button {
  width: 100%;
  min-height: 49px;
  border: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.send-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(37, 37, 37, 0.18);
}

.policy-body {
  background: var(--paper);
}

.policy-header {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(22px, 12vw, 210px);
  background: #fbf6ed;
  box-shadow: 0 8px 22px rgba(37, 37, 37, 0.06);
}

.policy-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  color: #293244;
}

.policy-page {
  min-height: 690px;
  padding: 46px clamp(22px, 12vw, 210px) 64px;
  background: var(--paper);
}

.policy-page > h1 {
  margin: 0 0 42px;
  text-align: center;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.15;
}

.policy-card {
  max-width: 895px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #f3eee8;
}

.policy-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.policy-icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.policy-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
}

.policy-panel,
.policy-grid article,
.policy-contact {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fffaf3;
}

.policy-panel {
  padding: 24px;
  margin-bottom: 24px;
}

.policy-panel p,
.policy-panel h3 {
  margin: 0;
}

.policy-panel h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.policy-grid article {
  padding: 20px 16px;
}

.policy-grid article:first-child {
  border-color: var(--line);
  background: #fffaf3;
}

.policy-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
}

.policy-grid article:nth-child(2) h3 {
  color: var(--accent);
}

.policy-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #293244;
  font-size: 14px;
}

.policy-contact {
  padding: 18px 22px;
  text-align: center;
  color: #293244;
  font-size: 14px;
}

.policy-contact a {
  color: var(--ink);
  font-weight: 700;
}

.policy-footer {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 22px;
  background: #1f2835;
  color: #fffaf3;
  text-align: center;
}

.policy-footer nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.policy-footer nav a {
  color: #9fc2ff;
  text-decoration: underline;
}

.policy-footer p {
  margin: 0;
  color: rgba(255, 250, 243, 0.72);
}

.legal-links {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .brand-main {
    font-size: 42px;
  }

  .brand-sub {
    font-size: 35px;
  }

  .site-header,
  .site-footer {
    min-height: 92px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fbf6ed;
    border-top: 1px solid var(--line);
    padding: 12px 24px 22px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 92px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .intro-section,
  .collections-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-mark {
    text-align: left;
  }

  .intro-image {
    max-width: 430px;
  }

  .collections-section {
    grid-template-columns: 1fr;
  }

  .intro-copy h2,
  .collections-copy h2,
  .services-section h2 {
    font-size: 30px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .enquiry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-header,
  .contact-page {
    padding-inline: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .policy-header {
    padding-inline: 28px;
  }

  .policy-page {
    padding-inline: 28px;
  }

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

@media (max-width: 680px) {
  .intro-section,
  .collections-section,
  .services-section {
    padding: 62px 18px;
  }

  .site-header,
  .site-footer {
    padding-inline: 18px;
  }

  .brand {
    min-width: 132px;
  }

  .brand-main {
    font-size: 34px;
  }

  .brand-sub {
    font-size: 29px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-image {
    object-position: 35% center;
  }

  .hero-copy {
    width: min(330px, calc(100% - 34px));
    padding-right: 18px;
  }

  .hero-copy::after {
    right: 6px;
    height: 190px;
  }

  .hero h1 {
    margin-right: 18px;
    font-size: 31px;
  }

  .section-mark span {
    font-size: 42px;
  }

  .section-mark strong {
    font-size: 48px;
  }

  .intro-copy h2,
  .collections-copy h2 {
    font-size: 27px;
  }

  .services-section h2 {
    font-size: 54px;
  }

  .slide-arrow.left {
    left: 24px;
  }

  .slide-arrow.right {
    right: 24px;
  }

  .product-grid,
  .service-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .products-hero {
    padding: 58px 18px 42px;
  }

  .products-hero h1 {
    font-size: 42px;
  }

  .product-listing {
    padding: 46px 18px 66px;
  }

  .contact-header {
    min-height: 82px;
    padding: 14px 18px;
  }

  .contact-page {
    padding: 44px 18px 64px;
  }

  .contact-page > h1 {
    font-size: 31px;
  }

  .message-form {
    padding: 28px 20px 24px;
  }

  .compact-brand .brand-main {
    font-size: 28px;
  }

  .compact-brand .brand-sub {
    font-size: 23px;
  }

  .policy-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: 120px;
    padding: 16px 18px;
  }

  .policy-header nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .policy-page {
    padding: 38px 18px 54px;
  }

  .policy-card {
    padding: 22px 16px;
  }

  .legal-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .product-grid {
    gap: 10px;
  }

}
