/* İmutor Redesign — tasarım sadakati birebir Claude Design dosyasından */
:root {
  --bg: #FBF8F4;
  --ink: #16241F;
  --muted: #5F6E67;
  --muted-2: #8B9791;
  --line: #EDE7DD;
  --line-2: #E9E2D7;
  --brand: #C06514;
  --brand-strong: #C6520A;
  --orange: #E2711D;
  --card: #ffffff;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; }
::selection { background: #F3D9BE; color: var(--ink); }
input, select, textarea, button { font-family: inherit; }
table { border-collapse: collapse; }
img { max-width: 100%; }

.wrap { max-width: 1180px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.serif { font-family: var(--serif); }
.hidden { display: none !important; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.header__inner {
  max-width: 1180px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.header__logo { cursor: pointer; margin-right: auto; display: flex; align-items: center; }
.header__logo img { height: 30px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 14.5px; font-weight: 500; }
.nav__link { cursor: pointer; padding: 6px 0; }
.nav__link:hover, .nav__trigger:hover { color: var(--brand); }
.nav__group { position: relative; }
.nav__trigger { cursor: pointer; padding: 6px 0; display: flex; align-items: center; gap: 7px; }
.caret {
  width: 5px; height: 5px; border-right: 1.5px solid var(--muted-2);
  border-bottom: 1.5px solid var(--muted-2); transform: rotate(45deg);
  margin-top: -3px; display: block;
}
.menu {
  position: absolute; top: 38px; left: -18px; background: #fff;
  border: 1px solid var(--line-2); border-radius: 14px; padding: 8px; min-width: 238px;
  box-shadow: 0 18px 40px -18px rgba(22, 36, 31, 0.28);
}
.menu__item { cursor: pointer; padding: 11px 14px; border-radius: 9px; font-weight: 500; }
.menu__item:hover { background: #F5F1EA; }
.menu__all { font-size: 13px; color: #7C8A83; border-top: 1px solid #F0EBE2; margin-top: 4px; font-weight: 500; }
/* Hamburger (mobil) */
.nav-toggle {
  display: none; width: 40px; height: 40px; border: 1px solid #E3DCD1; border-radius: 10px;
  background: #fff; cursor: pointer; padding: 0; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

.social { display: flex; align-items: center; gap: 8px; }
.social__link {
  width: 34px; height: 34px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.social__link:hover { opacity: 0.85; }
.social__link img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

/* ---------- Hero ---------- */
.hero {
  width: 100%; background-color: #FEC85C;
  background-image: url(../uploads/imutor-hero.png);
  background-size: 100% auto; background-position: center bottom; background-repeat: no-repeat;
  min-height: min(82vh, 760px); display: flex; align-items: flex-start; position: relative;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,246,232,0.82) 0%, rgba(255,246,232,0.6) 34%, rgba(255,246,232,0.12) 54%, rgba(255,246,232,0) 66%);
}
.hero__inner {
  position: relative; max-width: 1180px; margin: 0 auto; padding: 56px 32px 72px; width: 100%;
  display: grid; grid-template-columns: 54% 46%; gap: 0;
}
.hero__col { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px;
  background: rgba(255,255,255,0.72); border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: #B24E08;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: block; }
.hero__title {
  font-size: clamp(40px, 4.9vw, 76px); font-weight: 800; line-height: 1.0;
  letter-spacing: -0.03em; margin: 22px 0 0; color: var(--brand-strong); text-wrap: balance;
}
.hero__lede {
  font-size: 19px; line-height: 1.6; color: #7A4310; max-width: 420px; margin: 22px 0 0;
  font-weight: 500; text-wrap: pretty;
}
.hero__cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.btn { cursor: pointer; border-radius: 100px; font-size: 15px; font-weight: 600; border: none; display: inline-block; }
.btn--primary {
  background: var(--orange); color: #fff; padding: 15px 28px;
  box-shadow: 0 10px 24px -12px rgba(198, 82, 10, 0.6);
}
.btn--primary:hover { background: var(--brand-strong); }
.btn--ghost {
  background: #fff; border: 1.5px solid #fff; color: var(--brand-strong); padding: 14px 28px;
  box-shadow: 0 10px 24px -14px rgba(122, 67, 16, 0.45);
}
.btn--ghost:hover { color: #8A4409; }
.btn--dark { background: var(--ink); color: var(--bg); padding: 15px 34px; }
.btn--dark:hover { background: var(--brand); }

/* ---------- Trust bar ---------- */
.trust { padding: 34px 0 6px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.trust span {
  color: #8A4409; padding: 11px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
}
.trust span:nth-child(1) { background: linear-gradient(135deg, #FFF1DC 0%, #FFDDB2 100%); border: 1px solid #F7D3A6; }
.trust span:nth-child(2) { background: linear-gradient(135deg, #FFECD2 0%, #FFD59F 100%); border: 1px solid #F7CE9C; }
.trust span:nth-child(3) { background: linear-gradient(135deg, #FFE7C6 0%, #FFCC8D 100%); border: 1px solid #F6C88F; }

/* ---------- Section heads ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.h-serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; margin: 0; }
.link-more { cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--brand); }

/* ---------- Product grid (home) ---------- */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.pcard {
  cursor: pointer; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; display: flex; flex-direction: column; gap: 16px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.pcard:hover {
  border-color: var(--brand-strong);
  background: linear-gradient(150deg, #FFE7C6 0%, #F5A62B 45%, #C6520A 100%);
  box-shadow: 0 20px 40px -20px rgba(198, 82, 10, 0.55);
  transform: translateY(-4px);
}
.pcard:hover .pcard__media { background: rgba(255, 255, 255, 0.55); }
.pcard:hover .kicker { color: #FFE7C6; }
.pcard:hover .pcard__name { color: #FFFFFF; }
.pcard:hover .pcard__desc { color: #FFF1E0; }
.pcard:hover .pcard__go { color: #FFFFFF; }
.pcard__media { background: #F6F2EB; border-radius: 14px; aspect-ratio: 1/1; position: relative; overflow: hidden; }
.pcard__media img {
  position: absolute; inset: 16px; margin: auto; max-width: calc(100% - 32px);
  max-height: calc(100% - 32px); object-fit: contain; display: block;
}
.kicker { font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.pcard__name { font-family: var(--serif); font-size: 26px; letter-spacing: -0.01em; margin-top: -8px; }
.pcard__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; flex: 1; }
.pcard__go, .go-link { font-size: 14px; font-weight: 600; color: var(--brand); }

/* ---------- Beta glukan banner ---------- */
.beta {
  background-color: var(--orange);
  background-image:
    linear-gradient(100deg, rgba(70,26,2,0.5) 0%, rgba(70,26,2,0.28) 100%),
    url(../assets/honeycomb.png),
    linear-gradient(120deg, #B84E0C 0%, #D4650F 55%, #E4801B 100%);
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, 60px 104px, cover;
  color: #FFF7EC; border-radius: 28px; padding: 64px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center;
}
.beta__eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #FFD9AC; }
.beta__title { font-family: var(--serif); font-size: 44px; font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; margin: 18px 0 0; text-wrap: pretty; }
.beta__lede { font-size: 18px; line-height: 1.72; color: #fff; margin: 0; text-wrap: pretty; }
.beta__sub { font-size: 16px; line-height: 1.75; color: #FFF1E0; margin: 20px 0 0; text-wrap: pretty; }
.beta__cta { cursor: pointer; display: inline-block; margin-top: 28px; background: #fff; padding: 14px 26px; border-radius: 100px; font-size: 14.5px; font-weight: 600; color: #B84E0C; }
.beta__cta:hover { color: #8A3A08; }

/* ---------- DRcaps feature (home) ---------- */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.split p { font-size: 17px; line-height: 1.72; color: var(--muted); margin: 0; text-wrap: pretty; }
.split p + p { margin-top: 18px; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 18px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
}
.feat img { height: 40px; width: auto; object-fit: contain; }
.feat div { font-size: 14px; font-weight: 600; line-height: 1.4; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 13px; color: var(--muted-2); font-weight: 500; margin-bottom: 16px; }

/* ---------- Klavye erişimi: görünür focus ---------- */
[data-nav]:focus-visible,
.faq-q:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-strong);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Products list page ---------- */
.plist { display: flex; flex-direction: column; gap: 16px; margin-top: 44px; }
.prow {
  cursor: pointer; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px;
  display: grid; grid-template-columns: 200px 1fr auto; gap: 36px; align-items: center;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.prow:hover {
  border-color: var(--brand-strong);
  background: linear-gradient(120deg, #FFE7C6 0%, #F5A62B 55%, #C6520A 100%);
  box-shadow: 0 20px 40px -20px rgba(198, 82, 10, 0.55);
  transform: translateY(-4px);
}
.prow:hover .prow__media { background: rgba(255, 255, 255, 0.6); }
.prow:hover .kicker { color: #FFE7C6; }
.prow:hover .prow__name { color: #FFFFFF; }
.prow:hover .go-link { color: #FFFFFF; }
.prow:hover .tag { background: rgba(255, 255, 255, 0.9); border-color: rgba(255, 255, 255, 0.9); color: #B84E0C; }
.prow__media { background: #F6F2EB; border-radius: 16px; aspect-ratio: 1/1; position: relative; overflow: hidden; }
.prow__media img { position: absolute; inset: 18px; margin: auto; max-width: calc(100% - 36px); max-height: calc(100% - 36px); object-fit: contain; display: block; }
.prow__name { font-family: var(--serif); font-size: 30px; letter-spacing: -0.015em; margin-top: 8px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { font-size: 12.5px; font-weight: 500; color: #2F6B54; background: #EFF6F1; border: 1px solid #DCE7E0; padding: 6px 12px; border-radius: 100px; }

/* ---------- Detail page ---------- */
.detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 0; }
.detail-hero__media { background: #EFF6F1; border-radius: 26px; overflow: hidden; aspect-ratio: 1/1; }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-title { font-family: var(--serif); font-size: clamp(40px, 4.4vw, 58px); font-weight: 400; line-height: 1.05; letter-spacing: -0.025em; margin: 14px 0 0; }
.claims { display: flex; flex-direction: column; gap: 13px; margin-top: 28px; }
.claim { display: flex; gap: 13px; align-items: flex-start; }
.claim__dot { width: 7px; height: 7px; border-radius: 50%; background: #2F8F6B; display: block; margin-top: 9px; flex: none; }
.claim span:last-child { font-size: 17px; line-height: 1.6; color: #3A4A43; text-wrap: pretty; }
.callout { margin-top: 32px; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.callout strong { color: var(--ink); font-weight: 600; }

.itable-wrap { margin-top: 24px; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.itable { width: 100%; font-size: 15px; }
.itable th { text-align: left; padding: 18px 24px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); background: #FAF7F2; border-bottom: 1px solid var(--line); }
.itable td { padding: 16px 24px; border-bottom: 1px solid #F2EEE6; color: #3A4A43; }
.itable__foot { padding: 14px 24px; font-size: 12.5px; color: var(--muted-2); display: flex; gap: 28px; flex-wrap: wrap; }

.two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px; }
.info-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin: 0; }
.info-card p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 16px 0 0; text-wrap: pretty; }
.warn-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.warn-list div { font-size: 16px; line-height: 1.6; color: var(--muted); }
.storage { margin-top: 20px; padding-top: 18px; border-top: 1px solid #F2EEE6; font-size: 15px; line-height: 1.6; color: var(--muted); }
.storage strong, .approval strong { color: var(--ink); font-weight: 600; }
.approval { margin-top: 14px; font-size: 13px; color: var(--muted-2); }

.drcaps {
  background-color: var(--orange);
  background-image:
    linear-gradient(100deg, rgba(70,26,2,0.5) 0%, rgba(70,26,2,0.28) 100%),
    url(../assets/honeycomb.png),
    linear-gradient(120deg, #B84E0C 0%, #D4650F 55%, #E4801B 100%);
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, 60px 104px, cover;
  color: #FFF7EC; border-radius: 26px; padding: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
}
.drcaps h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -0.02em; margin: 0; text-wrap: pretty; }
.drcaps p { font-size: 16px; line-height: 1.72; color: #fff; margin: 20px 0 0; text-wrap: pretty; }
.drcaps p + p { margin-top: 16px; }
.drcaps__pills { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.drcaps__pill { border: 1.5px solid rgba(255,255,255,0.72); background: rgba(255,255,255,0.12); border-radius: 16px; padding: 20px; font-size: 14.5px; font-weight: 600; text-align: center; }

.notes { border-top: 1px solid var(--line-2); padding-top: 40px; }
.notes h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin: 0; }
.notes__body { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; max-width: 740px; }
.notes__body p { font-size: 17px; line-height: 1.7; color: var(--muted); margin: 0; text-wrap: pretty; }

.others { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.ocard { cursor: pointer; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px; display: flex; gap: 20px; align-items: center; }
.ocard:hover { border-color: var(--ink); }
.ocard__media { background: #F6F2EB; border-radius: 14px; width: 104px; height: 78px; display: flex; align-items: center; justify-content: center; padding: 10px; flex: none; }
.ocard__media img { max-width: 100%; max-height: 100%; display: block; }
.ocard__name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.ocard__form { font-size: 12.5px; color: var(--muted-2); margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; margin-top: 14px; }
.faq-layout > .faq-title { font-family: var(--serif); font-size: clamp(38px, 4.2vw, 56px); font-weight: 400; line-height: 1.05; letter-spacing: -0.025em; margin: 0; position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid #E4DDD2; }
.faq-item { border-bottom: 1px solid #E4DDD2; }
.faq-q { cursor: pointer; padding: 24px 0; display: flex; gap: 24px; align-items: flex-start; }
.faq-q:hover { color: var(--brand); }
.faq-q__text { flex: 1; font-size: 19px; font-weight: 600; line-height: 1.4; text-wrap: pretty; }
.faq-q__sign { width: 30px; height: 30px; border: 1px solid #DCD5C9; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; font-size: 17px; color: var(--muted); }
.faq-a { padding: 0 54px 28px 0; display: flex; flex-direction: column; gap: 14px; }
.faq-a p { font-size: 17px; line-height: 1.72; color: var(--muted); margin: 0; text-wrap: pretty; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; margin-top: 14px; align-items: start; }
.contact-intro p { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 20px 0 0; text-wrap: pretty; }
.contact-social { margin-top: 32px; display: flex; gap: 10px; }
.contact-social a { border: 1px solid #DCD5C9; border-radius: 100px; padding: 11px 20px; font-size: 14px; font-weight: 600; color: #3A4A43; text-decoration: none; }
.contact-social a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); text-decoration: none; }
.contact-social img { width: 15px; height: 15px; display: inline-block; vertical-align: -2px; margin-right: 8px; }
.contact-note { margin-top: 28px; font-size: 13.5px; line-height: 1.6; color: var(--muted-2); text-wrap: pretty; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 40px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field span { font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-2); }
.field input, .field select, .field textarea {
  border: 1px solid #E3DCD1; border-radius: 12px; padding: 14px 16px; font-size: 15px;
  background: #FCFAF7; color: var(--ink); outline: none;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.consent { grid-column: span 2; display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ink); flex: none; }
.form__actions { grid-column: span 2; display: flex; justify-content: flex-end; }
.form-sent { padding: 40px 0; text-align: center; }
.form-sent__check { width: 52px; height: 52px; border-radius: 50%; background: #EFF6F1; border: 1px solid #DCE7E0; margin: 0 auto; display: flex; align-items: center; justify-content: center; color: #2F8F6B; font-size: 22px; }
.form-sent__title { font-family: var(--serif); font-size: 28px; margin-top: 20px; }
.form-sent p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 10px 0 0; }

/* ---------- Footer ---------- */
.assurance { background: linear-gradient(90deg, #DE6A19 0%, #F5A62B 100%); color: #fff; text-align: center; padding: 16px 32px; font-size: 14px; font-weight: 600; }
.footer { background: #fff; border-top: 1px solid #F3E9DC; color: var(--muted); }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; }
.footer__logo img { height: 28px; width: auto; display: block; }
.footer__tag { font-family: var(--serif); font-size: 26px; color: var(--brand-strong); margin-top: 24px; }
.footer__disc { font-size: 13.5px; line-height: 1.75; color: #6E7C75; margin: 12px 0 0; max-width: 620px; text-wrap: pretty; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer__col-head { font-size: 11.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--brand-strong); }
.footer__link { cursor: pointer; color: #3A4A43; text-decoration: none; }
.footer__link:hover { color: var(--brand-strong); text-decoration: none; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid #F3E9DC; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 13px; color: #8E9A93; }

/* ---------- Responsive ---------- */
@media (prefers-reduced-motion: reduce) {
  .pcard, .prow { transition: none; }
  .pcard:hover, .prow:hover { transform: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; order: 3; }
  .social { order: 2; }
  .header__inner { gap: 12px; }
  /* Mobil menü: header altında açılır panel */
  .nav {
    display: none; order: 4; flex-basis: 100%; flex-direction: column; align-items: stretch;
    gap: 0; font-size: 16px; padding: 8px 0 4px; border-top: 1px solid var(--line-2); margin-top: 6px;
  }
  .nav.open { display: flex; }
  .nav__link { padding: 12px 4px; }
  .nav__group { position: static; }
  .nav__trigger { padding: 12px 4px; justify-content: space-between; }
  .menu {
    position: static; box-shadow: none; border: none; border-radius: 0; min-width: 0;
    padding: 0 0 4px 12px; margin-top: 0;
  }
  .hero__inner { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .beta, .split, .detail-hero, .drcaps, .faq-layout, .contact-layout, .footer__top, .two-cards { grid-template-columns: 1fr; gap: 32px; }
  .beta, .drcaps { padding: 40px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .prow { grid-template-columns: 1fr; }
  .others { grid-template-columns: 1fr; }
  .faq-layout > .faq-title { position: static; }
  .form { grid-template-columns: 1fr; }
  .field--full, .consent, .form__actions { grid-column: span 1; }
}
@media (max-width: 560px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .header__inner { padding: 14px 20px; }
  .pgrid { grid-template-columns: 1fr; }
}
