:root { --ink: #132b2b; --muted: #607574; --paper: #f7fbf8; --soft: #e7f2ed; --line: #c9ded7; --accent: #f06449; --accent-dark: #c74735; --mint: #c9e7d9; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--soft); color: var(--ink); font-family: Georgia, 'Times New Roman', serif; line-height: 1.5; }
.site-header { align-items: center; background: rgba(247, 251, 248, .94); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 18px clamp(20px, 5vw, 72px); }
.brand { align-items: center; display: flex; font-size: 1.08rem; font-weight: bold; gap: 10px; }
.brand span { align-items: center; background: var(--ink); border-radius: 10px; color: var(--paper); display: inline-flex; font-family: Arial, sans-serif; font-size: .62rem; height: 32px; justify-content: center; transform: rotate(-7deg); width: 32px; }
.site-header nav { display: flex; font-family: Arial, sans-serif; font-size: .7rem; gap: clamp(16px, 3vw, 38px); letter-spacing: .1em; text-transform: uppercase; }
.site-header a { color: inherit; text-decoration: none; }
.site-header nav a:hover, .back:hover { color: var(--accent-dark); }
.header-link, .back { font-family: Arial, sans-serif; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.main { margin: auto; max-width: 1240px; padding: 80px 24px 120px; }
.eyebrow { color: var(--accent-dark); font-family: Arial, sans-serif; font-size: .66rem; font-weight: bold; letter-spacing: .16em; margin: 0 0 20px; text-transform: uppercase; }
.intro { max-width: 600px; margin-bottom: 60px; }
.intro h1 { font-size: clamp(3.5rem, 8vw, 7rem); font-weight: normal; letter-spacing: -.06em; line-height: .86; margin: 0 0 28px; }
.intro h1 em { color: var(--accent); font-style: italic; }
.intro p:last-child { color: var(--muted); font-size: 1.1rem; }
.back { color: inherit; display: inline-block; margin-bottom: 42px; text-decoration: none; }
.product-index { background: var(--paper); border: 1px solid var(--line); border-radius: 5px; color: var(--muted); font-family: Arial, sans-serif; font-size: .72rem; line-height: 2; margin-bottom: 26px; padding: 18px 22px; }
.product-index a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.product-index a:hover { color: var(--accent-dark); }
.detail-grid { display: grid; gap: 2px; grid-template-columns: repeat(2, 1fr); }
.detail { background: var(--paper); scroll-margin-top: 20px; }
.detail img { aspect-ratio: 1 / 1; display: block; object-fit: cover; width: 100%; }
.detail-copy { padding: 25px 28px 32px; }
.detail h1, .detail h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: normal; letter-spacing: -.03em; line-height: 1.05; margin: 0 0 10px; }
.detail p:not(.eyebrow) { color: var(--muted); margin: 0 0 18px; }
.detail dl { border-top: 1px solid var(--line); font-family: Arial, sans-serif; font-size: .7rem; margin: 0 0 20px; padding-top: 12px; }
.detail dt { color: var(--muted); display: inline; }
.detail dd { display: inline; margin: 0; }
.detail dd:after { content: ''; display: block; }
.price { font-family: Arial, sans-serif; font-size: .8rem; font-weight: normal; }
.single { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); }
.single .detail-copy { align-self: center; padding: clamp(24px, 5vw, 70px); }
.single .detail-copy h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
.site-footer { align-items: center; background: var(--ink); color: var(--paper); display: flex; justify-content: space-between; padding: 30px max(24px, calc((100% - 1240px) / 2)); font-family: Arial, sans-serif; }
.site-footer p, .site-footer small { color: #b5ccc5; font-size: .7rem; margin: 0; }
@media (max-width: 700px) { .site-header nav { display: none; } .main { padding: 58px 18px 80px; } .detail-grid, .single { grid-template-columns: 1fr; } .single .detail-copy { padding: 28px 24px 38px; } .site-footer { align-items: flex-start; flex-direction: column; gap: 14px; } }
.skip-link { background: var(--accent); color: var(--paper); left: 12px; padding: 10px 14px; position: fixed; top: -60px; z-index: 10; }
.skip-link:focus { top: 12px; }
.site-header { backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 5; }
.desktop-nav { align-items: center; flex: 1; justify-content: center; }
.mobile-menu { display: none; font-family: Arial, sans-serif; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.mobile-menu summary { cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { color: var(--accent); font-size: 1.1rem; margin-left: 5px; }
.mobile-menu[open] { position: relative; }
.mobile-menu nav { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 12px 30px rgba(19, 43, 43, .12); display: grid; gap: 12px; min-width: 220px; padding: 18px; position: absolute; right: 0; top: 32px; }
.mobile-menu nav a { white-space: nowrap; }
a:focus-visible, summary:focus-visible, .button:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.product a { display: block; height: 100%; }
.product h3 { overflow-wrap: anywhere; }
@media (max-width: 700px) { .desktop-nav { display: none; } .mobile-menu { display: block; } .site-header { gap: 16px; } .header-link { margin-left: auto; } }
