/* WAROENG JAVA v1.0.8 — responsive frontend foundation */

h1,h2,h3,p,figure,dl,dd{margin-top:0}
button,input,select,textarea{font:inherit;color:inherit}
button{appearance:none;-webkit-appearance:none}
select{color:inherit}

:root{
  --bg:#fdfcf9;
  --surface:#fffefa;
  --ink:#3d342e;
  --muted:#786e64;
  --accent:#79553e;
  --accent-2:#b99b73;
  --sage:#e4e8dc;
  --rose:#eee0da;
  --sand:#efe8d9;
  --line:#e5dfd6;
  --radius:10px;
  --shell-max:1392px;
  --page-gutter:clamp(16px,4.1vw,56px);
  --font-body:Arial,Helvetica,sans-serif;
  --font-display:Georgia,'Times New Roman',serif;
  color-scheme:light;
}

*{box-sizing:border-box}
[hidden]{display:none!important}
html{
  background:var(--bg);
  scroll-behavior:smooth;
  scroll-padding-top:112px;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body{
  margin:0;
  min-width:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
button,a,input,select{-webkit-tap-highlight-color:transparent}
button,a{touch-action:manipulation}
button{cursor:pointer;border:0;color:inherit;background:transparent;padding:0}
a{text-decoration:none;color:inherit}
button,input,select{font:inherit}
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}
img{display:block;max-width:100%}
svg{
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.shell{
  width:100%;
  max-width:var(--shell-max);
  margin-inline:auto;
  padding-left:max(var(--page-gutter),env(safe-area-inset-left));
  padding-right:max(var(--page-gutter),env(safe-area-inset-right));
}
.skip-link{
  position:fixed;
  left:16px;
  top:-80px;
  z-index:100;
  background:var(--accent);
  color:white;
  padding:12px 18px;
  border-radius:8px;
}
.skip-link:focus{top:12px}

/* Announcement */
.announcement{
  min-height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:5px max(16px,env(safe-area-inset-right)) 5px max(16px,env(safe-area-inset-left));
  background:#ede7dd;
  color:#6c5846;
  font-size:.75rem;
  letter-spacing:.06em;
  text-align:center;
}
.announcement span{
  min-width:0;
  max-width:min(760px,calc(100vw - 84px));
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.announcement svg{width:14px;height:14px;flex:0 0 auto}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:var(--bg);
  border-bottom:1px solid #e9e3da;
}
.header-inner{
  min-height:88px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) minmax(210px,272px);
  grid-template-areas:"brand nav search";
  align-items:center;
  column-gap:clamp(20px,2.2vw,32px);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:9px;
  flex-shrink:0;
}
.brand-image{
  grid-area:brand;
  width:clamp(158px,14vw,190px);
  height:50px;
  min-width:0;
}
.brand-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
}
.desktop-nav{
  grid-area:nav;
  min-width:0;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(18px,2.3vw,30px);
}
.desktop-nav a{
  min-height:44px;
  display:flex;
  align-items:center;
  position:relative;
  color:var(--muted);
  font-size:.875rem;
  white-space:nowrap;
  transition:color .18s ease;
}
.desktop-nav a.nav-active{color:#684c37}
.desktop-nav a.nav-active::after{
  content:"";
  position:absolute;
  height:2px;
  background:#866448;
  bottom:18px;
  left:0;
  right:0;
}
.header-search{
  grid-area:search;
  min-width:0;
  width:100%;
  min-height:43px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 13px;
  border:1px solid #e8e1d6;
  background:#f8f5ef;
  border-radius:7px;
  color:#817568;
}
.header-search:focus-within{
  border-color:#9b785c;
  box-shadow:0 0 0 2px #9b785c1c;
}
.header-search>svg{width:18px;height:18px;flex:0 0 auto}
.header-search input{
  min-width:0;
  width:100%;
  background:none;
  border:0;
  outline:none;
  color:#40352c;
  font-size:.875rem;
}
.header-search input::placeholder{color:#998d80;opacity:1}
.header-search button{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  margin-right:-8px;
  border-radius:50%;
}
.header-search button svg{width:15px;height:15px}

/* Hero */
.intro{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  min-height:350px;
  margin:30px 0 24px;
  overflow:hidden;
  background:#f0eae0;
  border-radius:calc(var(--radius) + 2px);
}
.intro-copy{
  min-width:0;
  padding:33px 28px 26px 40px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:9px;
  color:#7c654d;
  font-size:.75rem;
  font-weight:500;
  letter-spacing:.15em;
}
.eyebrow>span{width:22px;height:1px;background:#987b5f;flex:0 0 auto}
.eyebrow b{font-weight:500}
.intro h1{
  margin:17px 0 14px;
  color:#503c2e;
  font-family:var(--font-display);
  font-size:clamp(30px,3.15vw,47px);
  font-weight:400;
  line-height:1.22;
  letter-spacing:-1.4px;
}
.intro h1 em{font-weight:400;color:#917155}
.intro p{
  margin:0 0 22px;
  color:#7a6c5d;
  font-size:1rem;
  line-height:1.75;
}
.primary-button{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:21px;
  padding:11px 20px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#fffaf3;
  border-radius:5px;
  font-size:.875rem;
  transition:background .18s ease,transform .18s ease;
}
.primary-button svg{width:18px;height:18px}
.intro-footnote{
  margin-top:24px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#917a63;
  font-size:.75rem;
  letter-spacing:.03em;
}
.fine-line{width:24px;height:1px;background:#b9a58c;flex:0 0 auto}
.intro-visual{
  position:relative;
  min-width:0;
  min-height:350px;
  overflow:hidden;
  background:#dfd4c2;
}
.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 56%;
}
.photo-caption{
  position:absolute;
  z-index:1;
  left:24px;
  right:24px;
  bottom:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#fffaf1;
  font-family:var(--font-display);
  font-size:20px;
  font-style:italic;
  text-shadow:0 1px 10px #30211270;
}
.photo-caption span{min-width:0}
.photo-caption svg{width:23px;height:23px;flex:0 0 auto}
.intro-visual::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:90px;
  pointer-events:none;
  background:linear-gradient(transparent,#30211229);
}

/* Catalog */
.catalog{margin-top:42px;scroll-margin-top:18px}
.catalog-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}
.eyebrow.compact{
  color:#96785b;
  font-size:.75rem;
  letter-spacing:.13em;
}
.catalog h2{
  margin:9px 0 0;
  font:400 35px/1.25 var(--font-display);
  letter-spacing:-.9px;
}
.catalog h2>span{color:#a98c65}
.catalog-note{
  display:flex;
  align-items:center;
  gap:8px;
  padding-bottom:5px;
  color:#887d6f;
  font-size:.875rem;
}
.catalog-note svg{width:17px;height:17px;flex:0 0 auto}
.catalog-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  padding:15px 0 21px;
  border-top:1px solid #e6e0d6;
}
.result-summary{
  min-width:0;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  color:#94897c;
  font-size:.875rem;
}
.result-summary strong{color:#5a4c3e;font-weight:500}
.separator-dot{color:#baa994}
.search-term{max-width:350px;overflow-wrap:anywhere}
.sort-wrap{
  flex:0 0 auto;
  min-width:0;
  display:flex;
  align-items:center;
  gap:6px;
  color:#86745f;
}
.sort-wrap>svg{width:16px;height:16px;flex:0 0 auto}
.sort-select{
  min-width:155px;
  height:36px;
  padding:0 28px 0 5px;
  border:0;
  outline:none;
  box-shadow:none;
  background:transparent;
  color:#6d5a48;
  font-size:.875rem;
  cursor:pointer;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px 24px;
}
.product-card{min-width:0}
.product-photo{
  position:relative;
  width:100%;
  aspect-ratio:1.14;
  display:block;
  overflow:hidden;
  padding:0;
  border-radius:9px;
  background:#eee8e0;
  text-align:left;
}
.product-photo.sage{background:#e5e7dd}
.product-photo.rose{background:#ece0d8}
.product-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s cubic-bezier(.2,.7,.3,1);
}
.photo-keramik img{object-position:center 80%}
.product-tag{
  position:absolute;
  left:16px;
  top:16px;
  max-width:calc(100% - 32px);
  overflow:hidden;
  padding:5px 9px;
  border:1px solid #ffffff8c;
  border-radius:4px;
  background:#fffdf7ed;
  color:#74624f;
  font-size:.75rem;
  letter-spacing:.01em;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.product-open{
  position:absolute;
  right:15px;
  bottom:15px;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fffdf5f0;
  color:#74624f;
  transition:background .18s ease;
}
.product-open svg{width:20px;height:20px}
.product-info{min-width:0;padding:16px 2px 0}
.product-meta{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  color:#958675;
  font-size:.75rem;
}
.product-meta>span:first-child{letter-spacing:.04em;text-transform:uppercase}
.origin{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:4px;
  font-size:.75rem;
  text-align:right;
}
.origin svg{width:12px;height:12px;flex:0 0 auto}
.product-name{
  max-width:100%;
  display:block;
  margin-top:8px;
  padding:0;
  background:transparent;
  color:#4f4034;
  font-family:var(--font-display);
  font-size:24px;
  font-weight:400;
  line-height:1.35;
  letter-spacing:-.35px;
  text-align:left;
  overflow-wrap:anywhere;
}
.product-bottom{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-top:9px;
}
.price{
  min-width:0;
  margin:0;
  color:#77563e;
  font-size:1rem;
  font-weight:500;
}
.price span{color:#9d9387;font-size:.75rem;font-weight:400}
.detail-link{
  flex:0 0 auto;
  min-height:40px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:0;
  background:transparent;
  color:#8c7964;
  font-size:.875rem;
}
.detail-link svg{width:15px;height:15px}
.catalog-end{
  margin:40px auto 13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  color:#b39b7e;
}
.catalog-end>span{width:60px;height:1px;background:#e6dbce}
.catalog-end svg{width:21px;height:21px}
.sample-note{
  max-width:760px;
  margin:0 auto 35px;
  color:#978878;
  font-size:.75rem;
  line-height:1.6;
  text-align:center;
}
.empty-state{
  padding:60px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  border:1px dashed #d9cbb9;
  border-radius:var(--radius);
  background:#f8f5ef;
  color:#947a60;
  text-align:center;
}
.empty-state>svg{width:32px;height:32px}
.empty-state h3{margin:20px 0 0;color:#4f4034;font:400 27px var(--font-display)}
.empty-state p{margin:10px 0 22px;color:#8c8071;font-size:1rem}

/* Footer */
.site-footer{
  padding:30px 0 max(30px,env(safe-area-inset-bottom));
  border-top:1px solid #e4ddd2;
  background:#f5f1e9;
}
.footer-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:32px;
}
.footer-inner>div{min-width:0}
.footer-brand{width:190px;height:52px}
.footer-inner p{
  max-width:520px;
  margin:9px 0 0;
  color:#927f6a;
  font-size:.875rem;
}
.footer-right{
  max-width:min(520px,48vw);
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
  color:#9a8a77;
  font-size:.75rem;
  text-align:right;
}
.footer-right button{
  min-height:36px;
  display:flex;
  align-items:center;
  gap:9px;
  padding:0;
  background:transparent;
  color:#6f5942;
  font-size:.875rem;
}
.footer-right button svg{width:14px;height:14px;flex:0 0 auto}
.footer-right span{overflow-wrap:anywhere}

/* Dialogs */
dialog:not([open]){display:none!important}
dialog{
  border:0;
  padding:0;
  color:var(--ink);
  background:var(--surface);
  box-shadow:0 24px 80px #3d2f2452;
}
dialog::backdrop{background:#34281f66}
.dialog-close{
  position:absolute;
  z-index:4;
  right:14px;
  top:14px;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fffdf8;
  box-shadow:0 4px 16px #4c3a2b1c;
}
.dialog-close svg{width:18px;height:18px}
.product-dialog{
  width:min(900px,calc(100vw - 32px));
  max-width:900px;
  max-height:90dvh;
  overflow:auto;
  overscroll-behavior:contain;
  border-radius:calc(var(--radius) + 2px);
}
.dialog-product{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);min-height:560px}
.dialog-photo{min-width:0;min-height:560px;background:#eee4d6}
.dialog-photo img{width:100%;height:100%;object-fit:cover}
.dialog-info{
  min-width:0;
  padding:40px 30px 28px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.dialog-title{
  margin:11px 0;
  font:400 31px/1.2 var(--font-display);
  letter-spacing:-.7px;
  overflow-wrap:anywhere;
}
.dialog-origin{display:flex;align-items:center;gap:5px;margin:0;color:#8f7a65;font-size:.875rem}
.dialog-origin svg{width:15px;height:15px;flex:0 0 auto}
.dialog-price{margin:24px 0 17px;color:var(--accent);font-size:24px}
.dialog-price span{color:#8e7e6e;font-size:.875rem}
.dialog-description{margin:0;color:#82725f;font-size:1rem;line-height:1.8}
.product-specs{width:100%;margin:23px 0 20px;font-size:.875rem}
.product-specs>div{display:flex;justify-content:space-between;gap:18px;padding:9px 0;border-bottom:1px solid #eee5d9}
.product-specs dt{color:#a08d76;flex:0 0 auto}
.product-specs dd{min-width:0;margin:0;color:#6b5540;text-align:right;overflow-wrap:anywhere}
.detail-note{
  display:flex;
  align-items:flex-start;
  gap:8px;
  padding:11px;
  border-radius:5px;
  background:#f2f0e8;
  color:#8a7c64;
  font-size:.75rem;
  line-height:1.7;
}
.detail-note svg{width:16px;height:16px;flex:0 0 auto;margin-top:2px}
.detail-note p{margin:0}
.dialog-back{width:100%;margin-top:21px}
.about-dialog{
  width:min(560px,calc(100vw - 32px));
  max-height:90dvh;
  overflow:auto;
  padding:35px;
  border-radius:calc(var(--radius) + 2px);
}
.about-mark{width:54px;height:54px;object-fit:contain;margin-bottom:8px}
.about-dialog>p{color:#8a7865;font-size:1rem;line-height:1.7}
.about-dialog .about-credits{font-size:.75rem}
.source-link{display:flex;align-items:center;gap:7px;margin-top:12px;font-size:.875rem;text-decoration:underline}
.source-link svg{width:14px;height:14px}

@media (hover:hover) and (pointer:fine){
  .desktop-nav a:hover{color:#684c37}
  .primary-button:hover{background:#63452f;transform:translateY(-1px)}
  .product-photo:hover img{transform:scale(1.035)}
  .product-photo:hover .product-open{background:#fff}
  .product-name:hover{color:#956b48}
  .detail-link:hover{color:#573e2a}
}

@media (min-width:1500px){
  .intro,.intro-visual{min-height:385px}
  .intro-copy{padding-left:46px}
  .intro h1{font-size:49px}
}

@media (max-width:1150px){
  .header-inner{grid-template-columns:auto minmax(0,1fr) minmax(190px,230px);column-gap:20px}
  .desktop-nav{gap:20px}
  .intro-copy{padding:28px}
  .intro h1{font-size:36px}
  .intro,.intro-visual{min-height:334px}
  .intro-footnote{display:none}
  .catalog-note{font-size:.75rem}
  .product-meta{align-items:flex-start;flex-direction:column;gap:5px}
  .origin{justify-content:flex-start;text-align:left}
}

@media (max-width:900px){
  html{scroll-padding-top:106px}
  .header-inner{
    min-height:80px;
    grid-template-columns:auto minmax(0,1fr) minmax(175px,205px);
    column-gap:16px;
  }
  .brand-image{width:150px;height:44px}
  .desktop-nav{gap:14px}
  .desktop-nav a{font-size:.8125rem}
  .header-search{min-height:40px;padding-inline:11px}
  .intro-copy{padding:27px 22px}
  .intro h1{font-size:30px;letter-spacing:-1px}
  .intro p{font-size:.875rem}
  .intro,.intro-visual{min-height:294px}
  .product-grid{gap:25px 17px}
  .product-name{font-size:22px}
  .product-bottom{flex-wrap:wrap;gap:2px 10px}
  .product-photo{aspect-ratio:1}
}

@media (max-width:700px){
  :root{--page-gutter:18px}
  html{scroll-padding-top:154px}
  .announcement{min-height:29px;gap:12px;padding-block:4px}
  .announcement svg{width:13px;height:13px}
  .header-inner{
    min-height:0;
    grid-template-columns:auto minmax(0,1fr);
    grid-template-areas:
      "brand search"
      "nav nav";
    align-items:center;
    column-gap:12px;
    row-gap:7px;
    padding-top:10px;
    padding-bottom:7px;
  }
  .brand-image{width:clamp(126px,37vw,148px);height:42px}
  .header-search{min-height:38px;padding:0 9px;gap:6px}
  .header-search input{font-size:1rem}
  .header-search input::placeholder{font-size:.75rem}
  .header-search>svg{width:16px;height:16px}
  .desktop-nav{
    min-width:0;
    width:100%;
    min-height:38px;
    align-self:auto;
    justify-content:flex-start;
    gap:20px;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .desktop-nav::-webkit-scrollbar{display:none}
  .desktop-nav a{
    min-height:36px;
    flex:0 0 auto;
    padding:2px 0 8px;
    font-size:.8125rem;
  }
  .desktop-nav a.nav-active::after{bottom:1px}

  .intro{
    grid-template-columns:1fr;
    margin-top:18px;
    margin-bottom:18px;
    border-radius:9px;
  }
  .intro-copy{padding:28px 26px 27px}
  .intro h1{
    margin:15px 0 12px;
    font-size:clamp(29px,8vw,39px);
    letter-spacing:-1.1px;
  }
  .intro p{margin-bottom:18px;font-size:1rem;line-height:1.7}
  .desktop-break{display:none}
  .intro-visual{min-height:220px;max-height:none;aspect-ratio:16/9}
  .eyebrow{font-size:.75rem;letter-spacing:.1em}
  .primary-button{min-height:44px;padding:10px 17px}
  .photo-caption{left:19px;right:19px;bottom:15px;font-size:18px}

  .catalog{margin-top:30px}
  .catalog-heading{margin-bottom:19px}
  .catalog h2{font-size:30px}
  .catalog-note{display:none}
  .catalog-toolbar{
    display:grid;
    grid-template-columns:1fr;
    align-items:stretch;
    gap:10px;
    padding:13px 0 18px;
  }
  .result-summary{gap:6px;font-size:.8125rem}
  .sort-wrap{
    width:100%;
    min-height:42px;
    padding:0 11px;
    gap:8px;
    border:1px solid #e8e1d6;
    border-radius:7px;
    background:#f8f5ef;
  }
  .sort-wrap>svg{width:15px;height:15px}
  .sort-select{width:100%;min-width:0;height:40px;padding:0 24px 0 0;background:transparent;font-size:.8125rem}

  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px 13px}
  .product-photo{aspect-ratio:.92;border-radius:7px}
  .product-tag{left:8px;top:8px;max-width:calc(100% - 16px);padding:4px 6px;font-size:.6875rem}
  .product-open{right:9px;bottom:9px;width:31px;height:31px}
  .product-open svg{width:17px;height:17px}
  .product-info{padding:11px 1px 0}
  .product-meta{min-height:52px;gap:4px;font-size:.6875rem}
  .origin{font-size:.6875rem;line-height:1.35}
  .origin svg{margin-top:1px}
  .product-name{min-height:51px;margin-top:6px;font-size:20px;line-height:1.28}
  .product-bottom{margin-top:4px;align-items:flex-start;flex-direction:column;gap:2px}
  .price{font-size:.875rem}
  .price span{font-size:.6875rem}
  .detail-link{min-height:34px;font-size:.8125rem}
  .catalog-end{margin-top:30px}
  .sample-note{max-width:320px;margin-bottom:27px;font-size:.75rem}

  .site-footer{padding-top:26px}
  .footer-inner{grid-template-columns:1fr;align-items:start;gap:20px}
  .footer-brand{width:155px;height:46px}
  .footer-inner p{max-width:none;margin-top:7px;font-size:.8125rem}
  .footer-right{max-width:none;width:100%;align-items:flex-start;gap:8px;text-align:left}
  .footer-right button{min-height:36px;font-size:.8125rem}
  .footer-right span{font-size:.75rem;line-height:1.55}

  .dialog-product{grid-template-columns:1fr;min-height:0}
  .product-dialog{width:calc(100vw - 28px);max-height:92dvh}
  .dialog-photo{height:250px;min-height:250px}
  .dialog-photo img{object-position:center}
  .dialog-info{padding:25px}
  .dialog-title{font-size:28px}
  .dialog-price{margin:17px 0 12px}
  .product-specs{margin:15px 0}
  .empty-state{padding:35px 18px}
  .empty-state h3{font-size:25px}
  .about-dialog{width:calc(100vw - 28px);padding:28px}
}

@media (max-width:430px){
  :root{--page-gutter:15px}
  html{scroll-padding-top:152px}
  .announcement{font-size:.6875rem;letter-spacing:.04em}
  .brand-image{width:132px;height:40px}
  .header-inner{column-gap:9px}
  .header-search{padding-inline:8px}
  .header-search button{width:30px;height:30px}
  .desktop-nav{gap:17px}
  .desktop-nav a{font-size:.78rem}
  .intro-copy{padding:25px 22px 24px}
  .intro h1{font-size:clamp(28px,8.5vw,36px)}
  .intro p{font-size:.9375rem}
  .product-grid{gap:22px 10px}
  .product-name{font-size:19px}
  .footer-brand{width:145px}
}

@media (max-width:360px){
  :root{--page-gutter:14px}
  html{scroll-padding-top:196px}
  .header-inner{
    grid-template-columns:1fr;
    grid-template-areas:
      "brand"
      "search"
      "nav";
    row-gap:6px;
    padding-top:9px;
  }
  .brand-image{width:136px;height:39px}
  .header-search{width:100%}
  .desktop-nav{gap:16px}
  .intro-copy{padding:23px 19px}
  .intro h1{font-size:27px}
  .catalog h2{font-size:28px}
  .product-name{font-size:18px}
}

@media (max-width:320px){
  .product-grid{grid-template-columns:1fr;gap:26px}
  .product-photo{aspect-ratio:1.08}
  .product-meta{min-height:0}
  .product-name{min-height:0;font-size:22px}
  .product-bottom{flex-direction:row;align-items:center}
  .detail-link{min-height:40px}
}

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