@charset "UTF-8";

:root{
  --bg:#fafafa;
  --panel:#ffffff;
  --text:#0b0b0c;
  --muted:#6b6b70;
  --border:#e6e6ea;
  --maxw:1180px;
  --gutter:20px;

  --radius:0px; /* sharp edges */

  --shadow: 0 6px 24px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.55 "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

/* Home hero typography */
.intro-title .small{
  font-family:"Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight:300;
  color:#000;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

.container{
  max-width:var(--maxw);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

.muted{ color:var(--muted); }

/* Header (minimal + sticky) */
header{
  position:sticky;
  top:0;
  /* Keep header above page content, but below the full-screen menu overlay */
  z-index:9998;
  background:rgba(250,250,250,.86);
  backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid var(--border);
}

.nav{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  letter-spacing:.02em;
}

.logo{
  width:18px;
  height:18px;
  background:var(--text);
  border-radius:0;
}

#brand-name{
  font-weight:600;
  font-size:14px;
  text-transform:uppercase;
}

header nav ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  align-items:center;
  gap:22px;
}

header nav a{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(11,11,12,.88);
  padding:10px 0;
  border-bottom:1px solid transparent;
}

header nav a:hover{ border-bottom-color:rgba(11,11,12,.38); }
header nav a.active{ border-bottom-color:rgba(11,11,12,.70); }

/* Dropdown (kept, but more editorial) */
.has-dropdown{ position:relative; }
.dropdown{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  display:none;
  grid-template-columns:auto auto;
  gap:22px;
  padding:18px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  min-width:520px;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown{ display:grid; }

.dropdown h4{ margin:0 0 8px; font-size:12px; text-transform:uppercase; letter-spacing:.12em; color:rgba(11,11,12,.65); }
.dropdown a{ display:block; font-size:13px; padding:6px 0; border-bottom:1px solid transparent; white-space:nowrap; }
.dropdown a:hover{ border-bottom-color:rgba(11,11,12,.28); }

main{ flex:1 0 auto; }

/* Footer */
footer{
  border-top:1px solid var(--border);
  background:var(--bg);
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  font-size:13px;
  color:rgba(11,11,12,.70);
}

/* Typography */
.display{
  font-size: clamp(44px, 6vw, 92px);
  line-height: .92;
  letter-spacing:-.03em;
  font-weight:500;
  margin:0;
}

h1, h2, h3, h4{ color:var(--text); }
h1{ letter-spacing:-.02em; }

/* Home intro */
.intro{
  min-height: calc(100vh - 72px);
  display:grid;
  place-items:center;
  padding:52px 0 64px;
}
.intro-title{ margin:0; text-align:center; }
.intro-title .line.small{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:rgba(11,11,12,.62);
  margin-bottom:12px;
}
.intro-title .line.big{
  display:block;
  font-size: clamp(44px, 8vw, 120px);
  line-height:.9;
  letter-spacing:-.04em;
  font-weight:700;
  /* Space between logo line and the "WELCOME" line */
  margin:0 0 24px;
}

/* Remove trailing spacing after the last small line */
.intro-title .line.small:last-child{ margin-bottom:0; }

.intro-logo{
  display:inline-block;
  height: clamp(44px, 8vw, 120px);
  width:auto;
  max-width: min(560px, 82vw);
  object-fit: contain;
  vertical-align: middle;
}

/* Generic sections */
section{ padding:48px 0; }

/* Products page (Nest & Field inspired grid) */
.products-collection{ padding-top:34px; }

.products-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
}

.product-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.product-tabs .tab{
  appearance:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.6);
  padding:10px 14px;
  border-radius:var(--radius);
  cursor:pointer;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.product-tabs .tab:hover{ background:rgba(255,255,255,.92); }
.product-tabs .tab.active{
  background:var(--text);
  color:var(--bg);
  border-color:var(--text);
}

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

/* 3-column editorial grid on desktop, 2 on tablet, 1 on mobile */
.product-card{ grid-column: span 4; }
@media (max-width: 980px){ .product-card{ grid-column: span 6; } }
@media (max-width: 640px){
  .products-header{ align-items:flex-start; flex-direction:column; }
  .product-card{ grid-column: span 12; }
}

.product-card.is-hidden{ display:none; }

.product-card__link{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.product-frame{
  border:1px solid var(--border);
  background:var(--panel);
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio: 4 / 5;
  box-shadow:none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover .product-frame{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(11,11,12,.18);
}

.product-img{
  width:100%;
  height:100%;
  object-fit:cover; /* fill the frame */
}

.product-meta h3{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
}

.product-meta .muted{
  margin:6px 0 0;
  font-size:13px;
  line-height:1.45;
}

/* Product detail (editorial split layout) */
.product-page-section{ padding-top:34px; }
.product-page{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:start;
}

.product-hero{
  width:100%;
  height: min(74vh, 760px);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--panel);
  object-fit:cover; /* fill */
}

.product-copy{
  padding-top:6px;
  min-width:0;
}

.product-copy h1{
  margin:0 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.02;
  letter-spacing:-.03em;
}

.product-copy p{ margin: 0 0 12px; }
.product-copy h4{
  margin:20px 0 8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(11,11,12,.62);
}

.product-copy ul{ margin:0; padding-left:18px; }

@media (max-width: 980px){
  .product-page{ grid-template-columns:1fr; }
  .product-hero{ height: min(52vh, 560px); }
}

/* People + other pages: keep simple grid look */
.grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
@media (max-width: 980px){ .grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width: 640px){ .grid{ grid-template-columns:1fr; } }

.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--panel);
  overflow:hidden;
}

/* Contact form */
label span{ display:block; font-size:12px; text-transform:uppercase; letter-spacing:.12em; color:rgba(11,11,12,.62); margin-bottom:6px; }
input, textarea, select{
  width:100%;
  border:1px solid var(--border);
  background:var(--panel);
  padding:12px 12px;
  border-radius:var(--radius);
  font:inherit;
}
textarea{ min-height:140px; resize:vertical; }
input:focus, textarea:focus, select:focus{ outline:none; border-color:rgba(11,11,12,.45); }

button.submit{
  border:1px solid var(--text);
  background:var(--text);
  color:var(--bg);
  padding:12px 16px;
  border-radius:var(--radius);
  cursor:pointer;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
button.submit:hover{ opacity:.92; }

/* Fullscreen burger menu */
:root{
  /* icon button sizing for burger + close (keeps them perfectly aligned) */
  --menu-icon-btn: 52px;
}

.menu-toggle{
  appearance:none;
  border:0;
  background:transparent;
  height:var(--menu-icon-btn);
  padding:0;
  border-radius:0;
  cursor:pointer;
  display:flex;
  flex-direction:row-reverse; /* icon stays at the far right edge */
  align-items:center;
  gap:10px;

  /* Fixed to the same coordinates as the close (X) button */
  position:fixed;
  top:calc((72px - var(--menu-icon-btn)) / 2);
  right:max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  z-index:100000;
}
.menu-toggle:hover{ border-color:transparent; }
.menu-toggle:focus{ outline:none; }
.menu-toggle svg{ width:36px; height:36px; stroke-width:3.2; }

/* Hide the burger button while the menu is open (the close button lives in the overlay) */
body.menu-open .menu-toggle{ visibility:hidden; }

/* Close button (X) in the overlay, glued to the burger position */
.menu-close{
  appearance:none;
  border:0;
  background:transparent;
  height:var(--menu-icon-btn);
  padding:0;
  border-radius:0;
  cursor:pointer;
  display:flex;
  flex-direction:row-reverse; /* icon stays at the far right edge */
  align-items:center;
  gap:10px;

  position:fixed;
  top:calc((72px - var(--menu-icon-btn)) / 2);
  /* Match the burger button position inside the centered .container */
  right:max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  z-index:100001;
}
.menu-close:hover{ border-color:transparent; }
.menu-close:focus{ outline:none; }
.menu-close svg{ width:36px; height:36px; stroke-width:3.2; }

/* Labels next to Menu / Exit Menu */
.menu-label{
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight:300;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#000;
  line-height:1;
  user-select:none;
}

/* No hover border / background on the icon buttons */
.menu-toggle,
.menu-close{
  display: inline-flex !important;
  align-items: center;
}


body.menu-open{ overflow:hidden; }

.menu-overlay{
  position:fixed;
  inset:0;
  /* Solid background so the menu doesn't clash with page content */
  background:#fff;
  backdrop-filter:none;
  /* Must sit above everything (including sticky header + any positioned elements) */
  z-index:99999;
  /* hidden by default; opened via body.menu-open or by removing [hidden] */
  display:none;
  place-items:center;
  padding:24px;
}

/* Respect the HTML [hidden] attribute no matter what */
.menu-overlay[hidden]{
  display:none !important;
}

/* Open state */
body.menu-open .menu-overlay{
  display:grid;
}

.menu-overlay-inner{
  width:min(900px, 100%);
  display:grid;
  gap:28px;
}

.menu-full{
  display:grid;
  gap:18px;
}

.menu-full a{
  font-size: clamp(34px, 6vw, 72px);
  line-height:1.02;
  letter-spacing:-.03em;
  font-weight:700;
  padding:6px 0;
}

/* Hover: Roboto Mono italic, lighter weight */
.menu-full a:hover{
  font-family:"Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-style:italic;
  font-weight:300;
  opacity:1;
}

/* Page patterns */
.page-title{
  font-size: clamp(34px, 5vw, 64px);
  line-height:1.02;
  letter-spacing:-.03em;
  margin:0;
}

.contact-block{
  margin-top:18px;
  border-top:1px solid var(--border);
}

.contact-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--border);
}

.contact-label{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color:rgba(11,11,12,.60);
}

.contact-value a{ border-bottom:1px solid rgba(11,11,12,.22); }
.contact-value a:hover{ border-bottom-color:rgba(11,11,12,.45); }

.people-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}

.person-card{
  grid-column: span 4;
  border:1px solid var(--border);
  background:rgba(255,255,255,.65);
  border-radius:0;
  overflow:hidden;
}

.person-photo{ aspect-ratio: 1 / 1; }
.person-photo img{ width:100%; height:100%; object-fit:cover; object-position:top;  display:block; }

.person-meta{ padding:16px 16px 18px; }
.person-name{ margin:0; font-size:18px; letter-spacing:-.01em; }
.person-bio{ margin:10px 0 0; color:rgba(11,11,12,.70); }

.story-prose{ margin-top:14px; max-width:100%; }
.story-prose p{ margin: 0 0 14px; }

@media (max-width: 900px){
  .person-card{ grid-column: span 6; }
  .contact-row{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .person-card{ grid-column: span 12; }
}


/* Brand logo in header */
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit; }
.brand-logo{ height:22px; width:auto; display:block; }
@media (min-width: 720px){ .brand-logo{ height:24px; } }

/* Stockists page */
.stockists{ display:grid; gap:18px; margin-top:24px; }
.stockist{ border-top:1px solid var(--border); padding-top:18px; }
.stockist-name{ font-size:16px; }
.stockist-meta{ margin-top:6px; color:rgba(11,11,12,.72); }
.stockist a{ color:inherit; text-decoration:underline; text-underline-offset:3px; }

#brand-name{ display:none; }


.stockist-group{ margin-top:28px; }
.stockist-group + .stockist-group{ margin-top:44px; }
.stockist-group-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(11,11,12,.60);
  font-weight:700;
  margin-bottom:0;
}
.stockist-region{
  margin:42px 0 4px;
  font-size:22px;
  letter-spacing:-.02em;
  text-decoration:underline;
  text-underline-offset:4px;
}


.stockist-group .stockists + .stockist-region{
  margin-top:42px;
}


.stockist-region + .stockists{
  margin-top:-2px;
}

.stockist-group-label + .stockist-region{
  margin-top:8px;
}


.contact-link{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-link:hover{
  opacity: .75;
}


.product-extra-meta{
  margin-top: 22px;
}
.product-extra-meta p{
  margin: 0 0 14px;
}


.product-card--list{
  grid-column: span 12;
}

.product-card__link--list{
  display:block;
  padding:14px 0;
}

.product-card--list:last-of-type .product-card__link--list{
}

.product-meta--list h3{
  margin-bottom:4px;
}


.limited-intro{
  grid-column: span 12;
  max-width: 72ch;
  margin: 0 0 18px;
  display:none;
}



.product-card__link--static{
  cursor: default;
}

.product-card__link--static:hover{
  opacity: 1;
}

.product-card__link--static .product-frame{
  transform: none;
  box-shadow: none;
}


/* Keep menu controls visible on stockists and other pages */
.menu-toggle,
.menu-close{
  display: inline-flex !important;
  align-items: center;
}

/* Slightly stronger home emphasis */
.home-emphasis{
  font-weight: 700;
}

/* More breathing room in story text */
.story-copy{
  margin-bottom: 1.8em;
}

.icon-burger{
  width: 24px;
  height: 24px;
}


/* Stronger home intro weight */
.intro-title .small,
.intro-title .line.small{
  font-weight: 700 !important;
  color: rgba(11,11,12,.88);
  letter-spacing: .2em;
}

/* More space between story paragraphs */
.story-prose p,
.story-prose .story-copy{
  margin: 0 0 28px !important;
}
.story-prose p:last-child,
.story-prose .story-copy:last-child{
  margin-bottom: 0 !important;
}


/* Keep header visible while scrolling */
header{
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
}

header.is-hidden,
header.header-hidden,
body.header-hidden header{
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

main{
  position: relative;
  z-index: 1;
}


/* More space between Our Story text blocks */
.story-prose p,
.story-prose .story-copy{
  margin: 0 0 40px !important;
}

.story-prose p:last-child,
.story-prose .story-copy:last-child{
  margin-bottom: 0 !important;
}


/* More space between Our Story headline and body text */
.story-prose{
  margin-top: 34px !important;
}
