/* ===== Tastte Japan - Style ===== */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #1A1A2E;
  --secondary: #C0392B;
  --accent: #D4A574;
  --warm-bg: #FFF8F0;
  --light-bg: #FAF5EF;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-light: #6B7280;
  --border: #E8E0D8;
  --success: #27AE60;
  --font-heading: 'Shippori Mincho', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-latin: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #A0301F; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.4;
  font-weight: 600;
}

/* Container */
.ct1 { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Sections */
.sc3 { padding: 80px 0; }
.sa4 { padding: 80px 0; background: var(--warm-bg); }

.st5 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.ss6 {
  text-align: center;
  color: var(--text-light);
  font-size: .95rem;
  margin-bottom: 48px;
}

/* Grid */
.gr7 { display: grid; gap: 28px; }
.g28 { grid-template-columns: repeat(2, 1fr); }
.g39 { grid-template-columns: repeat(3, 1fr); }

/* Content layout */
.cw4 { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }

/* ===== Header ===== */
.hd1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.hs2 {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.hi3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lg4 { display: flex; align-items: center; flex-shrink: 0; }
.li5 { height: 40px; width: auto; }

.nv6 { display: flex; align-items: center; }

.nl7 {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.ni8 {
  display: flex;
  align-items: center;
  position: relative;
}

.nk9 {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nk9:hover { color: var(--secondary); background: rgba(192,57,43,.05); }
.na0 { color: var(--secondary); }

/* Dropdown */
.nd2 { position: relative; }

.nd2 .nk9 { cursor: pointer; gap: 4px; }

.da8 {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
  margin-left: 2px;
}

.nd2:hover .da8 { transform: rotate(180deg); }

.dm4 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  z-index: 100;
}

.nd2:hover .dm4 { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dl6 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  transition: all var(--transition);
}

.dl6:hover { background: var(--warm-bg); color: var(--secondary); }

.di1 { width: 28px; height: 28px; flex-shrink: 0; }

/* Hamburger */
.hb1 {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.hl2 {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.ha3 .hl2:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ha3 .hl2:nth-child(2) { opacity: 0; }
.ha3 .hl2:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mm4 {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
}

.ma5 { display: block; }

.ml6 {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mc7 {
  display: block;
  padding: 10px 16px;
  font-size: .92rem;
  color: var(--text-light);
}

.mc7:hover { color: var(--secondary); }

/* ===== Hero ===== */
.hr1 {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--warm-bg) 100%);
  overflow: hidden;
}

.hc2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ht4 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--primary);
}

.hs5 {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.9;
}

.hb6 { display: flex; gap: 16px; flex-wrap: wrap; }

.hm7 { display: flex; justify-content: center; align-items: center; }
.hm7 img { max-width: 100%; height: auto; }

/* ===== Buttons ===== */
.bt1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.bp2 {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.bp2:hover {
  background: #A0301F;
  border-color: #A0301F;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}

.bs3 {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.bs3:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.bo4 {
  background: transparent;
  color: var(--secondary);
  border-color: var(--border);
}

.bo4:hover { border-color: var(--secondary); }

.bm5 { padding: 8px 18px; font-size: .85rem; }

/* ===== Cards ===== */
.cd1 {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.cd1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ck0 { display: block; color: inherit; }
.ck0:hover { color: inherit; }

.ci2 { position: relative; overflow: hidden; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--bg-warm) 0%, #f0e6d8 100%); }
.ci2 img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cd1:hover .ci2 img { transform: scale(1.03); }

.bf5 {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.cb3 { padding: 20px; }

.cm6 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.bc2 {
  background: var(--warm-bg);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--accent);
}

.cd9 { font-size: .8rem; color: var(--text-light); font-family: var(--font-latin); }

.ct4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ce5 {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Badges */
.br3, .bs4, .bg6 {
  font-size: .72rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.br3 { background: #EBF5FB; color: #2980B9; }
.bs4 { background: #EAFAF1; color: var(--success); }
.bg6 { background: var(--warm-bg); color: var(--text-light); }

/* Small cards (sidebar) */
.cs3 { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cs3:last-child { border-bottom: none; }
.si4 { width: 72px; height: 50px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.si4 img { width: 100%; height: 100%; object-fit: cover; }
.sb5 { flex: 1; }
.sb5 h4 { font-size: .85rem; line-height: 1.4; margin-bottom: 2px; }
.sb5 span { font-size: .75rem; color: var(--text-light); }

/* ===== Category Grid ===== */
.cg1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cc2 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.cc2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  color: inherit;
}

.ci3 { width: 56px; height: 56px; flex-shrink: 0; }
.ci3 img { width: 100%; height: 100%; }

.cn4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; color: var(--primary); }
.cd5 { font-size: .82rem; color: var(--text-light); margin-bottom: 4px; }
.cc6 { font-size: .75rem; color: var(--accent); font-weight: 600; }

/* Category header */
.ch7 { text-align: center; margin-bottom: 40px; }

/* ===== Article Page ===== */
.ah1 { margin-bottom: 32px; }
.ai2 { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg-warm) 0%, #f0e6d8 100%); }
.ai2 img { width: 100%; height: 100%; object-fit: cover; display: block; }

.am3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.at5 { font-size: 2rem; margin-bottom: 16px; }

.ab4 {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
}

.ab4 h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.ab4 p { margin-bottom: 16px; }

.ab4 a { color: var(--secondary); font-weight: 500; border-bottom: 1px solid transparent; }
.ab4 a:hover { border-bottom-color: var(--secondary); }

.ab4 ul, .ab4 ol { margin-bottom: 16px; padding-left: 24px; }
.ab4 li { margin-bottom: 8px; }

/* Tip blockquote */
.tb1 {
  background: linear-gradient(135deg, var(--warm-bg), #FFF5E6);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.tl2 {
  display: block;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

/* Info card */
.ic1 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.it2 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }

.ir3 { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f0ebe5; }
.ir3:last-child { border-bottom: none; }

.il4 { color: var(--text-light); font-size: .85rem; }
.iv5 { font-weight: 500; font-size: .85rem; }

/* Related */
.ar8 { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }

/* Tags */
.ag7 { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.ag7 span {
  background: var(--light-bg);
  color: var(--text-light);
  font-size: .78rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ===== Sidebar ===== */
.sb1 { position: sticky; top: 96px; }

.sw2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.st3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

/* Sidebar search */
.ss4 { display: flex; gap: 0; }
.si5 {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: .88rem;
  font-family: var(--font-body);
  outline: none;
}
.si5:focus { border-color: var(--accent); }
.sb6 {
  padding: 10px 16px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .85rem;
}
.sb6:hover { background: #A0301F; }

/* Sidebar categories */
.sl7 { list-style: none; }
.sc8 { border-bottom: 1px solid #f0ebe5; }
.sc8:last-child { border-bottom: none; }
.sk9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: var(--text);
  font-size: .88rem;
}
.sk9:hover { color: var(--secondary); }
.so0 {
  background: var(--warm-bg);
  color: var(--text-light);
  font-size: .72rem;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Sidebar CTA */
.sa2 {
  background: linear-gradient(135deg, var(--primary), #16213E);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.st3a { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; font-family: var(--font-heading); }
.st4a { color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 16px; }

/* ===== Breadcrumbs ===== */
.bc1 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: .82rem;
  flex-wrap: wrap;
}

.bl3 { color: var(--text-light); }
.bl3:hover { color: var(--secondary); }
.bs4a { color: var(--border); }
.bi2 { color: var(--text); }

/* ===== Pagination ===== */
.pg1 { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }

.pl2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  font-family: var(--font-latin);
}

.pl2:hover { border-color: var(--secondary); color: var(--secondary); }
.pa3 { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.pd4 { display: flex; align-items: center; color: var(--text-light); }

/* ===== FAQ ===== */
.fq1 { max-width: 800px; margin: 0 auto; }

.fi2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.fq3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary);
  transition: background var(--transition);
}

.fq3:hover { background: var(--warm-bg); }

.fi5 {
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.fa6 .fi5 { transform: rotate(180deg); }

.fa4 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 24px;
}

.fa6 .fa4 { max-height: 300px; padding: 0 24px 20px; }

.fa4 p { color: var(--text-light); font-size: .9rem; line-height: 1.8; }

/* ===== Newsletter ===== */
.nl1 {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary), #16213E);
  color: var(--white);
}

.nt2 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.nx3 { color: rgba(255,255,255,.7); margin-bottom: 24px; }

.nf4 { display: flex; justify-content: center; gap: 0; max-width: 480px; margin: 0 auto; }

.ni5 {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,.2);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .95rem;
  font-family: var(--font-body);
  outline: none;
}

.ni5::placeholder { color: rgba(255,255,255,.5); }
.ni5:focus { border-color: var(--accent); }

.nb6 {
  padding: 14px 28px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition);
}

.nb6:hover { background: #A0301F; }

/* ===== Footer ===== */
.ft1 {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}

.fi2a {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.fo9 { margin-bottom: 16px; }
.fo9 img { height: 36px; }

.fx5 { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.6); }

.ft4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; font-family: var(--font-heading); }

.fl6 { list-style: none; }
.fk7 { display: block; padding: 5px 0; color: rgba(255,255,255,.6); font-size: .85rem; }
.fk7:hover { color: var(--white); }

.fb8 {
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-latin);
}

/* ===== Cookie Banner ===== */
.kb1 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  z-index: 2000;
  display: none;
}

.kb1.vs1 { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 1200px; margin: 0 auto; }

.kt2 { font-size: .85rem; color: var(--text-light); flex: 1; }

.kb3 { display: flex; gap: 10px; flex-shrink: 0; }

.ka4 {
  padding: 10px 20px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
}

.ks5 {
  padding: 10px 20px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .85rem;
}

/* Cookie Modal */
.ky7 {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.ky7.vs1 { display: flex; }

.kc7 {
  background: var(--white);
  border-radius: var(--radius);
  width: 90%;
  max-width: 520px;
  max-height: 80vh;
  overflow-y: auto;
}

.kh8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.kh8 h3 { font-size: 1.1rem; }

.kx6 {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-light);
}

.kb9 { padding: 24px; }

.ko1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0ebe5;
}

.ko1:last-child { border-bottom: none; }

.kt2a { font-size: .9rem; font-weight: 600; margin-bottom: 2px; }
.kd3 { font-size: .78rem; color: var(--text-light); }

.kg4 {
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.kg4::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}

.ka5 { background: var(--success); }
.ka5::after { transform: translateX(20px); }

.kf0 {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ===== Search ===== */
.sf1 { display: flex; gap: 0; margin-bottom: 32px; }
.si2 {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-body);
  outline: none;
}
.si2:focus { border-color: var(--accent); }
.sb3 {
  padding: 12px 24px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-size: .88rem;
  font-family: var(--font-body);
}
.sc5 { margin-bottom: 24px; color: var(--text-light); font-size: .9rem; }

/* ===== Forms ===== */
.fm1 { max-width: 600px; }
.fg2 { margin-bottom: 20px; }
.fl3 { display: block; font-weight: 500; margin-bottom: 6px; font-size: .9rem; }
.fi4, .ft5a, .fs6 {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-body);
  outline: none;
  background: var(--white);
}
.fi4:focus, .ft5a:focus, .fs6:focus { border-color: var(--accent); }
.ft5a { min-height: 140px; resize: vertical; }
.fs7 {
  padding: 14px 32px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
}
.fs7:hover { background: #A0301F; }

/* ===== Contact ===== */
.cw1 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.ci3a { padding: 32px; background: var(--warm-bg); border-radius: var(--radius); }

/* ===== About ===== */
.ac1 { max-width: 800px; margin: 0 auto; }
.ac1 h2 { font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; border-bottom: 2px solid var(--accent); padding-bottom: 8px; }
.ac1 p { margin-bottom: 16px; line-height: 2; }

/* ===== Legal ===== */
.lc1 { max-width: 800px; margin: 0 auto; }
.lt2 { font-size: 1.8rem; margin-bottom: 32px; }
.ls3 { margin-bottom: 32px; }
.ls3 h2 { font-size: 1.2rem; margin-bottom: 12px; color: var(--primary); }
.lx4 { line-height: 2; color: var(--text); }
.lx4 p { margin-bottom: 12px; }

/* ===== Seasonal ===== */
.sn1 { text-align: center; }
.sb2a {
  display: inline-block;
  background: var(--warm-bg);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid var(--accent);
}

/* ===== Utilities ===== */
.tc1 { text-align: center; }
.hd0 { display: none !important; }
.so2 { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.ns3 { overflow: hidden; }
.m22 { margin-bottom: 16px; }
.m33 { margin-bottom: 24px; }
.t22 { margin-top: 16px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cw4 { grid-template-columns: 1fr; }
  .fi2a { grid-template-columns: repeat(2, 1fr); }
  .hc2 { grid-template-columns: 1fr; text-align: center; }
  .hb6 { justify-content: center; }
  .hm7 { order: -1; }
  .hm7 img { max-width: 400px; }
  .cw1 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nv6 { display: none; }
  .hb1 { display: flex; }
  .sc3, .sa4 { padding: 48px 0; }
  .st5 { font-size: 1.6rem; }
  .ht4 { font-size: 2rem; }
  .g39 { grid-template-columns: repeat(2, 1fr); }
  .cg1 { grid-template-columns: 1fr; }
  .fi2a { grid-template-columns: 1fr; }
  .at5 { font-size: 1.5rem; }
  .hr1 { padding: 110px 0 48px; }
  .kb1.vs1 { flex-direction: column; text-align: center; }
  .nf4 { flex-direction: column; }
  .ni5 { border-right: 2px solid rgba(255,255,255,.2); border-radius: var(--radius); }
  .nb6 { border-radius: var(--radius); }
}

/* About & Legal Pages */
.ac1 { max-width: 800px; margin: 0 auto; }
.ac1 h2, .lc1 h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-primary); margin: 2.5rem 0 1rem; border-bottom: 2px solid var(--color-accent); padding-bottom: .5rem; }
.ac1 h3, .lc1 h3 { font-size: 1.1rem; color: var(--color-secondary); margin: 1.5rem 0 .75rem; }
.ac1 p, .lc1 p { line-height: 1.9; margin-bottom: 1rem; color: var(--color-text); }
.am2 { margin-bottom: 2.5rem; }
.av3 { margin-bottom: 2rem; }
.lc1 { max-width: 800px; margin: 0 auto; }
.lu5 { font-size: .9rem; color: var(--color-muted); margin-bottom: 2rem; font-style: italic; }

@media (max-width: 480px) {
  .g39, .g28 { grid-template-columns: 1fr; }
  .ht4 { font-size: 1.6rem; }
  .hi3 { height: 60px; }
  .hr1 { padding: 90px 0 36px; }
  .mm4 { top: 60px; }
  .hb6 { flex-direction: column; }
  .hb6 .bt1 { width: 100%; justify-content: center; }
  .pg1 { flex-wrap: wrap; }
}
