/* NPO法人 来夢の里 — メインスタイルシート */

:root {
  --red:    #c0392b;
  --orange: #e67e22;
  --yellow: #f5c518;
  --cream:  #fdf8f2;
  --ivory:  #fff9f2;
  --brown:  #3d2b1f;
  --mid:    #7a5c45;
  --light:  #c49a6c;
  --green:  #2e8b57;
  --white:  #ffffff;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.85;
  font-size: 15px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===== HEADER ===== */
header {
  background: rgba(255,249,242,.97);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1.5px solid #f2e4d0;
}
.hd {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 68px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(192,57,43,.28);
  border: 2px solid #f2ddd0;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-words .en { font-size: 10px; color: var(--light); letter-spacing: .18em; font-weight: 500; }
.logo-words .ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 700;
  color: var(--brown); line-height: 1.2;
}
nav { display: flex; gap: 4px; align-items: center; }
nav a {
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  color: var(--mid);
  padding: 7px 13px;
  border-radius: 22px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
nav a:hover { background: rgba(230,126,34,.1); color: var(--orange); }
nav a.active { color: var(--orange); background: rgba(230,126,34,.08); }
.nav-btn {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 10px rgba(192,57,43,.3);
}
.nav-btn:hover { background: #a93226 !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--brown);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .15s;
}
.nav-toggle:hover { background: rgba(0,0,0,.06); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(155deg, #fff9f0, #ffecd5, #ffdcb8);
  padding: 64px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(192,57,43,.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.page-badge {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em;
  padding: 5px 16px; border-radius: 30px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700; color: var(--brown);
  margin-bottom: 14px; line-height: 1.45;
}
.page-lead { font-size: 14px; color: var(--mid); line-height: 1.95; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 32px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(192,57,43,.32); }
.btn-outline { background: transparent; color: var(--red); border: 2.5px solid var(--red); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(46,139,87,.32); }
.btn-green-outline { background: transparent; color: var(--green); border: 2.5px solid var(--green); }
.btn-yellow { background: var(--yellow); color: var(--brown); font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn-tel {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 32px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  background: var(--yellow); color: var(--brown);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .18s, box-shadow .18s;
}
.btn-tel:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
.section { padding: 80px 28px; }
.si { max-width: 1140px; margin: 0 auto; }
.sec-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px;
}
.sec-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; color: var(--brown); margin-bottom: 12px;
}
.sec-desc { font-size: 14px; color: var(--mid); line-height: 1.95; max-width: 540px; margin-bottom: 44px; }

/* ===== HERO (top page) ===== */
.hero {
  position: relative; overflow: hidden;
  min-height: 640px; display: flex; align-items: center;
  background: linear-gradient(155deg, #fff9f0 0%, #ffecd5 55%, #ffdcb8 100%);
}
.hero-shape { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,126,34,.18), transparent 70%);
  top: -180px; right: -140px;
}
.hero-shape::after {
  content: ''; position: absolute;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,.2), transparent 70%);
  bottom: -100px; left: 5%;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(192,57,43,.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1140px; margin: 0 auto;
  padding: 72px 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  padding: 5px 16px; border-radius: 30px;
  margin-bottom: 22px;
  box-shadow: 0 3px 12px rgba(230,126,34,.35);
}
.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 700; line-height: 1.55;
  margin-bottom: 20px; color: var(--brown);
}
.hero h1 .accent { color: var(--red); position: relative; display: inline; }
.hero h1 .accent::after {
  content: ''; position: absolute;
  left: 0; bottom: 1px; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: 3px; opacity: .55;
}
.hero-lead { font-size: 14px; color: var(--mid); line-height: 1.95; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.h-card {
  background: rgba(255,255,255,.92);
  border-radius: 18px; padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 6px 24px rgba(61,43,31,.09);
  border: 1.5px solid rgba(255,255,255,.8);
  animation: fadeUp .55s ease both;
}
.h-card:nth-child(2) { animation-delay: .12s; }
.h-card:nth-child(3) { animation-delay: .24s; }
.h-card:nth-child(4) { animation-delay: .36s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.h-card-ico {
  font-size: 32px; width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ico-orange { background: #fff3e0; }
.ico-green  { background: #e8f5e9; }
.ico-sky    { background: #e3f2fd; }
.ico-pink   { background: #fce4ec; }
.h-card h3  { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.h-card p   { font-size: 12px; color: var(--mid); line-height: 1.55; }

/* ===== ANNIVERSARY ===== */
.anniversary {
  background: linear-gradient(135deg, var(--brown) 0%, var(--mid) 100%);
  color: #fff; padding: 40px 28px;
}
.ann-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap; text-align: center;
}
.ann-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 80px; font-weight: 700;
  color: var(--yellow); line-height: 1;
  text-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.ann-body h2 { font-family: 'Noto Serif JP', serif; font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.ann-body p  { font-size: 14px; opacity: .82; line-height: 1.9; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-photo {
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #fff3e0, #ffdcb8);
  height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; border: 2px dashed var(--light); position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-photo .ph-icon { font-size: 64px; display: block; }
.about-photo .ph-note {
  font-size: 12px; color: var(--mid);
  text-align: center; line-height: 1.8;
  background: rgba(255,255,255,.7); padding: 8px 16px; border-radius: 10px;
}
.quote {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px; color: var(--brown); line-height: 1.85;
  border-left: 4px solid var(--orange);
  padding: 14px 18px; margin: 24px 0;
  background: linear-gradient(90deg, rgba(230,126,34,.07), transparent);
  border-radius: 0 12px 12px 0;
}
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat {
  background: var(--cream); border-radius: 16px;
  padding: 18px 14px; text-align: center; border: 1.5px solid #f0e4d0;
}
.stat-n {
  font-family: 'Noto Serif JP', serif;
  font-size: 30px; font-weight: 700;
  color: var(--red); display: block; line-height: 1; margin-bottom: 4px;
}
.stat-l { font-size: 12px; color: var(--mid); }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.sv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sv-card {
  background: var(--white); border-radius: 22px; padding: 30px 26px;
  box-shadow: 0 5px 20px rgba(61,43,31,.07);
  border: 2px solid transparent;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.sv-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(61,43,31,.12); border-color: var(--orange); }
.sv-ico { font-size: 44px; margin-bottom: 16px; display: block; }
.sv-card h3 { font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.sv-card p  { font-size: 13px; color: var(--mid); line-height: 1.85; }
.sv-tag {
  display: inline-block; margin-top: 16px;
  font-size: 11px; color: var(--red); font-weight: 700;
  background: #fff5f5; border: 1px solid #ffd0cc;
  padding: 4px 12px; border-radius: 20px;
}

/* ===== SWEETS ===== */
.sweets { background: linear-gradient(160deg, #fffaf2, #fff3e0); }
.sw-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px; align-items: center; }
.sw-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sw-img {
  border-radius: 18px; overflow: hidden; aspect-ratio: 1/1;
  background: linear-gradient(135deg, #fff3e0, #fde2b8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; border: 1.5px dashed var(--light);
  font-size: 40px;
  transition: transform .2s, box-shadow .2s; cursor: pointer;
}
.sw-img img { width: 100%; height: 100%; object-fit: cover; }
.sw-img:hover { transform: scale(1.04); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.sw-img-label { font-size: 11px; color: var(--mid); font-weight: 600; }
.sw-img.large { grid-column: span 2; aspect-ratio: 2/1; font-size: 56px; }
.sw-list { list-style: none; margin: 18px 0 26px; }
.sw-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 10px 0; border-bottom: 1px dashed #f0dfc8;
}
.sw-list li .li-ico { font-size: 18px; flex-shrink: 0; }
.sw-note {
  font-size: 13px; color: var(--mid);
  background: var(--white); border-left: 4px solid var(--yellow);
  padding: 12px 16px; border-radius: 0 12px 12px 0; line-height: 1.8; margin-top: 10px;
}

/* ===== RECRUIT ===== */
.recruit { background: var(--white); }
.rc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.rc-card {
  border-radius: 18px; padding: 26px;
  border: 2px solid var(--cream); background: var(--cream);
  transition: border-color .2s, background .2s;
}
.rc-card:hover { border-color: var(--orange); background: var(--ivory); }
.rc-lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--orange); display: block; margin-bottom: 5px; }
.rc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.rc-card p  { font-size: 13px; color: var(--mid); line-height: 1.75; }
.rc-banner {
  background: linear-gradient(135deg, var(--brown), var(--mid));
  border-radius: 22px; padding: 34px 38px;
  display: flex; align-items: center; gap: 26px; color: #fff;
}
.rc-banner-ico { font-size: 64px; flex-shrink: 0; }
.rc-banner h3 { font-family: 'Noto Serif JP', serif; font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.rc-banner p  { font-size: 14px; opacity: .85; line-height: 1.85; }
.btn-y {
  margin-top: 18px; background: var(--yellow); color: var(--brown);
  font-weight: 700; padding: 11px 26px; border-radius: 30px;
  display: inline-block; text-decoration: none;
  transition: transform .18s, box-shadow .18s; font-size: 14px;
}
.btn-y:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

/* ===== WORK ===== */
.work { background: #f0f7f1; }
.wk-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.wk-items { display: flex; flex-direction: column; gap: 14px; }
.wk-item {
  background: var(--white); border-radius: 16px; padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.wk-ico { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.wk-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.wk-item p  { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* ===== FORM (Formspree native) ===== */
.form-box {
  background: var(--white); border-radius: 22px;
  padding: 34px; box-shadow: 0 6px 24px rgba(0,0,0,.07);
}
.form-box h3 { font-family: 'Noto Serif JP', serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.form-box h2 { font-family: 'Noto Serif JP', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.form-box .sub { font-size: 13px; color: var(--mid); line-height: 1.85; margin-bottom: 20px; }
.form-row { display: flex; flex-direction: column; gap: 5px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--brown); }
.form-group label .req { color: var(--red); margin-left: 2px; }
.form-row input,
.form-row textarea,
.form-row select,
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e8d9c8; border-radius: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; color: var(--brown); background: var(--cream);
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--orange); background: #fff;
}
.form-row textarea, .form-group textarea { height: 120px; resize: vertical; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.submit-btn {
  width: 100%; padding: 14px;
  background: var(--green); color: #fff; border: none;
  border-radius: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(46,139,87,.3);
  margin-top: 6px;
}
.submit-btn:hover { background: #256a44; transform: translateY(-1px); }

/* ===== NEWS ===== */
.news { background: var(--cream); }
.news-box { border-radius: 20px; overflow: hidden; border: 1.5px solid #f0e4d0; }
.news-item {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 26px; background: var(--white);
  border-bottom: 1px solid #f7f0e8;
  text-decoration: none; color: var(--brown); transition: background .15s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: #fff9f2; }
.news-date { font-size: 12px; color: var(--mid); font-weight: 500; min-width: 100px; flex-shrink: 0; }
.news-cat { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; flex-shrink: 0; }
.cat-info    { background: #fff3e0; color: var(--orange); }
.cat-event   { background: #e8f5e9; color: var(--green); }
.cat-recruit { background: #fce4ec; color: #c2185b; }
.news-ttl  { font-size: 14px; flex: 1; }
.news-arr  { color: var(--light); font-size: 16px; flex-shrink: 0; }

/* ===== ACCESS ===== */
.access { background: var(--white); }
.ac-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.ac-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px dashed #f0e4d0; font-size: 14px;
}
.ac-row:last-child { border-bottom: none; }
.ac-ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.ac-key { font-weight: 700; min-width: 76px; color: var(--mid); flex-shrink: 0; }
.ac-map { border-radius: 20px; overflow: hidden; }
.ac-map iframe { width: 100%; height: 320px; border: 0; border-radius: 18px; display: block; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown), var(--mid));
  border-radius: 22px; padding: 40px; text-align: center; color: #fff;
  margin-top: 52px;
}
.cta-banner h2, .cta-banner .cta-title { font-family: 'Noto Serif JP', serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.cta-banner p, .cta-banner .cta-lead  { font-size: 14px; opacity: .85; line-height: 1.9; margin-bottom: 10px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px dashed #f0e4d0;
}
.info-card:last-of-type { border-bottom: none; }
.info-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.info-body { flex: 1; }
.info-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--orange); margin-bottom: 4px;
}
.info-tel {
  font-size: 26px; font-weight: 700; color: var(--brown);
  text-decoration: none; display: block; line-height: 1.3;
}
.info-tel:hover { color: var(--orange); }
.info-val { font-size: 14px; font-weight: 600; color: var(--brown); line-height: 1.7; }
.info-note { font-size: 12px; color: var(--mid); margin-top: 4px; }
.inquiry-guide { margin-top: 24px; background: var(--cream); border-radius: 16px; padding: 20px 22px; }
.inquiry-guide h3 { font-size: 13px; font-weight: 700; color: var(--brown); margin-bottom: 12px; }
.inquiry-guide ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.inquiry-guide li { font-size: 13px; display: flex; align-items: center; gap: 10px; color: var(--mid); }
.guide-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: inline-block; }

/* ===== FOOTER ===== */
footer { background: var(--brown); color: rgba(255,255,255,.85); padding: 52px 28px 28px; }
.ft-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.ft-brand .logo-mark-sm {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; overflow: hidden;
}
.ft-brand .name { font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ft-brand .sub  { font-size: 11px; opacity: .6; margin-bottom: 14px; }
.ft-brand p     { font-size: 13px; line-height: 1.85; opacity: .75; }
.ft-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; opacity: .9; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ft-col ul a { font-size: 13px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.ft-col ul a:hover { color: var(--yellow); }
.ft-bottom {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px; opacity: .5; flex-wrap: wrap; gap: 10px;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {
  .hero-inner, .about-grid, .sw-inner,
  .wk-inner, .ac-inner, .ft-inner, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .sv-grid, .rc-grid { grid-template-columns: 1fr 1fr; }
  nav {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,249,242,.98);
    padding: 16px 20px 24px; gap: 4px;
    border-bottom: 1.5px solid #f2e4d0; z-index: 200;
  }
  nav.open { display: flex; }
  nav a { border-radius: 12px; padding: 12px 16px; }
  .nav-toggle { display: block; }
  .hero-cards { display: none; }
  .rc-banner  { flex-direction: column; text-align: center; }
  .rc-banner-ico { font-size: 48px; }
}
@media(max-width: 600px) {
  .sv-grid, .rc-grid { grid-template-columns: 1fr; }
  .hero-btns, .cta-btns, .btn-row { flex-direction: column; align-items: stretch; }
  .btn, .btn-tel { justify-content: center; }
  .sw-gallery { grid-template-columns: 1fr; }
  .sw-img.large { grid-column: auto; aspect-ratio: 1/1; }
  .section { padding: 52px 18px; }
  .page-hero { padding: 48px 18px; }
  .cta-banner { padding: 32px 20px; border-radius: 16px; }
  .ft-inner { grid-template-columns: 1fr; gap: 28px; }
}
