@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --sans: 'Roboto', sans-serif;
  --black: #1a1a1a;
  --dim: #6a6a6a;
  --rule: #d4d4d4;
  --t: 320ms;
  --grid-cross: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='125' height='125'><line x1='62.5' y1='57.5' x2='62.5' y2='67.5' stroke='%23cccccc' stroke-width='0.8'/><line x1='57.5' y1='62.5' x2='67.5' y2='62.5' stroke='%23cccccc' stroke-width='0.8'/></svg>");
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--black);
  background-color: #ffffff;
  background-image: none;
  min-height: 100vh;
  animation: fade-in 400ms ease both;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: var(--grid-cross);
  background-size: 125px 125px;
}

/* ── accessibility ── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  z-index: 9999;
  transition: top 0.1s;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 1.5px solid var(--black);
  outline-offset: 3px;
}

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

/* ── keyframes ── */

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes logo-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes object-in {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* ── layout ── */

.site {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* ── header ── */

.site-header {
  padding: clamp(48px, 7vw, 100px) 0 clamp(60px, 9vw, 130px);
  display: flex;
  justify-content: center;
}

.logo {
  display: block;
  animation: logo-in 500ms ease 120ms both;
}

.logo img {
  width: clamp(140px, 18vw, 220px);
}

/* ── homepage ── */

.home-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: clamp(80px, 12vw, 160px);
}

.home-object {
  display: block;
  width: clamp(260px, 38vw, 560px);
  box-shadow: 4px 8px 48px rgba(0,0,0,0.13);
  transition: box-shadow var(--t) ease, transform var(--t) ease;
  animation: object-in 600ms ease 300ms both;
}

.home-object img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-object:hover {
  box-shadow: 8px 18px 72px rgba(0,0,0,0.20);
  transform: translateY(-5px);
}

.home-caption {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  width: clamp(260px, 38vw, 560px);
  animation: slide-up 500ms ease 600ms both;
}

.home-caption-name {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--black);
  text-transform: lowercase;
}

.home-caption-detail {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: lowercase;
  white-space: nowrap;
}

/* ── product page ── */

.product-header {
  padding: clamp(48px, 7vw, 100px) 0 0;
}

.product-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.product-back img {
  width: clamp(72px, 10vw, 100px);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(80px, 12vw, 160px);
  align-items: start;
}

/* left col: photos */
.product-photos {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 32px);
  animation: slide-up 600ms ease 240ms both;
}

/* shadow on container, not img — fixes overflow:hidden clip bug */
.product-photo {
  background-color: #e2e4e5;
  box-shadow: 2px 4px 20px rgba(0,0,0,0.10);
  transition: box-shadow var(--t) ease, transform var(--t) ease;
}

.product-photo:hover {
  box-shadow: 5px 10px 40px rgba(0,0,0,0.16);
  transform: translateY(-3px);
}

.product-photo img {
  width: 100%;
  display: block;
}

.product-photo.portrait {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.product-photo.portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-photo.landscape {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-photo.landscape img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* right col: info */
.product-info {
  position: sticky;
  top: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: slide-up 600ms ease 80ms both;
}

.product-category {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--dim);
  text-transform: lowercase;
}

.product-name {
  font-weight: 100;
  font-size: clamp(24px, 3.5vw, 42px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--black);
  text-transform: lowercase;
}

hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
}

.product-desc {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: var(--black);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
}

.meta-key {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: lowercase;
}

.meta-val {
  font-weight: 300;
  font-size: 13px;
  color: var(--black);
  text-transform: lowercase;
}

.enquire-block {
  padding-top: 8px;
}

.enquire-text {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.65;
  color: var(--dim);
  margin-bottom: 16px;
}

.enquire-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--black);
  text-transform: lowercase;
  transition: color var(--t) ease;
  position: relative;
}

.enquire-link::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
  transform-origin: left;
  transition: transform var(--t) ease, background var(--t) ease;
}

.enquire-link:hover {
  color: var(--dim);
}

.enquire-link:hover::after {
  background: var(--dim);
}

/* ── origin ── */

.product-origin {
  max-width: 560px;
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 96px);
}

.origin-label {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: lowercase;
  margin-bottom: 28px;
}

.origin-text {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  color: var(--black);
  margin-bottom: 20px;
}

.origin-text:last-child {
  margin-bottom: 0;
}

/* ── footer ── */

.site-footer {
  padding: clamp(32px, 5vw, 60px) 0 clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-mark {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: lowercase;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 300;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  transition: color var(--t) ease;
  position: relative;
}

.footer-contact::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width var(--t) ease;
}

.footer-contact:hover {
  color: var(--black);
}

.footer-contact:hover::after {
  width: 100%;
}

/* ── about ── */

.about-body {
  max-width: 560px;
  margin: 0 auto;
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(80px, 12vw, 160px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-label {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: lowercase;
  margin-bottom: 28px;
}

.about-text {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  color: var(--black);
  margin-bottom: 20px;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* ── contact form ── */

.contact-body {
  max-width: 560px;
  margin: 0 auto;
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(80px, 12vw, 160px);
}

.contact-intro {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: var(--dim);
  margin-bottom: clamp(40px, 6vw, 64px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: lowercase;
}

.form-input,
.form-textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  width: 100%;
  outline: none;
  transition: border-color var(--t) ease, background var(--t) ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--black);
  background: rgba(0,0,0,0.02);
}

.form-textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.7;
}

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--black);
  background: none;
  border: none;
  border-bottom: 1px solid var(--black);
  text-transform: lowercase;
  cursor: pointer;
  padding: 0;
  transition: color var(--t) ease, border-color var(--t) ease;
}

.form-submit:hover {
  color: var(--dim);
  border-color: var(--dim);
}

input[name="_gotcha"] {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  height: 0;
}

/* ── lightbox ── */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  animation: fade-in 200ms ease both;
  transform-origin: var(--ox, 50%) var(--oy, 50%);
  transform: scale(1);
  transition: transform 300ms ease;
  user-select: none;
  cursor: zoom-in;
}

.lightbox.zoomed img {
  transform: scale(2.5);
  cursor: zoom-out;
}

.product-photo {
  cursor: zoom-in;
}

/* ── cookie banner ── */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid var(--rule);
  padding: 16px clamp(24px, 5vw, 80px);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--dim);
  text-transform: lowercase;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  min-height: 44px;
  color: var(--dim);
  transition: color var(--t) ease;
}

.cookie-btn:hover {
  color: var(--black);
}

.cookie-accept {
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── responsive ── */

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  /* info before photos on mobile so enquiry is reachable */
  .product-info {
    position: static;
    order: -1;
  }
}

@media (max-width: 480px) {
  .home-caption {
    flex-direction: column;
    gap: 6px;
  }

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