/* =========================
  Base
========================= */

:root {
  --bg: #fbf8f3;
  --bg-soft: #f5eee6;
  --white: #ffffff;
  --text: #31261f;
  --muted: #74685f;
  --border: #e8ddd2;
  --primary: #c6522f;
  --primary-dark: #4a2618;
  --primary-soft: #fff3ec;
  --accent-soft: #fff3ec;
  --shadow: 0 14px 32px rgba(49, 38, 31, 0.07);
  --shadow-soft: 0 10px 24px rgba(49, 38, 31, 0.045);
  --inner: 1120px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;

  --color-bg: var(--bg);
  --color-bg-soft: var(--bg-soft);
  --color-white: var(--white);
  --color-text: var(--text);
  --color-muted: var(--muted);
  --color-border: var(--border);
  --color-primary: var(--primary);
  --color-primary-dark: var(--primary-dark);
  --color-accent: #d9b791;
  --inner-width: var(--inner);
  --shadow-card: var(--shadow-soft);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-base);
  line-height: 1.8;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(198, 82, 47, 0.65);
  outline-offset: 4px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-keep {
  white-space: nowrap;
}

.headline-line {
  display: block;
}

/* =========================
  Common
========================= */

.section {
  padding: 84px 24px;
}

.section-inner,
.header-inner,
.hero-inner,
.page-hero-inner,
.meo-hero-inner,
.website-hero-inner,
.works-hero-inner,
.profile-hero-inner,
.contact-hero-inner,
.cta-inner,
.footer-inner {
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--primary);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.58;
  font-weight: 900;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 174px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(198, 82, 47, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(198, 82, 47, 0.24);
}

.btn-outline {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(198, 82, 47, 0.55);
}

.btn-outline:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.btn-disabled {
  cursor: default;
  opacity: 0.78;
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.text-link-muted {
  color: var(--muted);
}

.text-link-muted::after {
  content: none;
}

/* =========================
  Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 221, 210, 0.78);
}

.header-inner {
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.site-logo {
  flex: 0 0 auto;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.global-nav {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: clamp(24px, 2.4vw, 32px);
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.9vw, 14px);
}

.global-nav a {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle-lines {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-header.is-nav-open .nav-toggle-lines {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--primary);
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

/* =========================
  CTA
========================= */

.cta-section {
  padding: 0 24px 76px;
  background: var(--white);
}

.cta-inner {
  padding: 46px 28px;
  text-align: center;
  background: linear-gradient(90deg, var(--bg-soft), var(--bg));
  border-radius: var(--radius-lg);
}

.cta-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.55;
  font-weight: 900;
}

.cta-inner p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* =========================
  Footer
========================= */

.site-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-weight: 900;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-nav a[aria-current="page"] {
  color: var(--primary);
}

.copyright {
  max-width: var(--inner);
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 12px;
}



/* =========================
  Page: home
========================= */

/* =========================
  Hero
========================= */
body.page-home .hero{
  min-height: calc(100svh - 76px);
  padding: clamp(64px, 7vw, 96px) 24px clamp(70px, 8vw, 104px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(198, 82, 47, 0.08), transparent 30%),
    linear-gradient(90deg, #fbf8f3 0%, #fbf8f3 50%, #f7efe7 100%);
}

body.page-home .hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
  gap: clamp(36px, 4.8vw, 64px);
  align-items: center;
}

body.page-home .hero-content{
  max-width: 610px;
  min-width: 0;
}

body.page-home .hero-content h1{
  margin: 0 0 24px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.28;
  letter-spacing: 0.02em;
  font-weight: 900;
  line-break: strict;
}

body.page-home .hero-lead{
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--color-muted);
  font-size: 15px;
}

body.page-home .hero-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

body.page-home .hero-points{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

body.page-home .hero-points li{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.page-home .point-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 21px;
}




/* =========================
  Hero Flow
========================= */
body.page-home .hero-flow{
  width: 100%;
  max-width: 520px;
  justify-self: end;
  display: grid;
  gap: 8px;
}

body.page-home .flow-card{
  min-width: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 142px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

body.page-home .flow-visual{
  position: relative;
  min-height: 116px;
  height: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(232, 221, 210, 0.9);
  border-radius: var(--radius-sm);
  background-color: #f2e8dd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.page-home .flow-visual::after{
  content: "";
  position: absolute;
  inset: auto 16px 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 -18px 0 rgba(255, 255, 255, 0.55),
    0 -36px 0 rgba(255, 255, 255, 0.35);
}

body.page-home .flow-visual-map{
  background-image:
    linear-gradient(135deg, rgba(47, 36, 29, 0.14), rgba(198, 82, 47, 0.08)),
    linear-gradient(45deg, transparent 48%, rgba(217, 183, 145, 0.55) 49%, rgba(217, 183, 145, 0.55) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(217, 183, 145, 0.42) 49%, rgba(217, 183, 145, 0.42) 51%, transparent 52%);
  background-size: cover, cover, 34px 34px, 34px 34px;
}

body.page-home .flow-visual-site{
  background-image:
    linear-gradient(135deg, rgba(47, 36, 29, 0.12), rgba(198, 82, 47, 0.08)),
    linear-gradient(135deg, #ecd8c5 0%, #fff8ee 52%, #c8ad96 100%);
}

body.page-home .flow-visual-contact{
  background-image:
    linear-gradient(135deg, rgba(47, 36, 29, 0.12), rgba(198, 82, 47, 0.08)),
    linear-gradient(135deg, #f5eadf 0%, #fffaf4 50%, #ddc0a3 100%);
}

body.page-home .flow-body{
  min-width: 0;
}

body.page-home .flow-step{
  margin: 0 0 2px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

body.page-home .flow-card h2{
  margin: 0 0 6px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.4;
  font-weight: 900;
  word-break: keep-all;
}

body.page-home .flow-body p:last-child{
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.68;
}

body.page-home .flow-arrow{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}




/* =========================
  Services
========================= */
body.page-home .services{
  background: #fff;
}

body.page-home .service-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 28px;
}

body.page-home .service-card{
  min-width: 0;
  padding: 42px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(47, 36, 29, 0.035);
}

body.page-home .service-icon{
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  background: #f2e6da;
  border-radius: 50%;
  font-size: 34px;
}

body.page-home .service-card h3{
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}

body.page-home .service-card p{
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}




/* =========================
  Reasons
========================= */
body.page-home .reasons{
  background: linear-gradient(90deg, #fbf8f3, #f7efe7);
}

body.page-home .reason-list{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

body.page-home .reason-item{
  padding: 8px 38px 4px;
  text-align: center;
}

body.page-home .reason-item:not(:last-child){
  border-right: 1px solid #dccfc2;
}

body.page-home .reason-number{
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  background: #efe3d6;
  border-radius: 50%;
  font-weight: 800;
}

body.page-home .reason-item h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

body.page-home .reason-item p{
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}




/* =========================
  Works
========================= */
body.page-home .works{
  background: #fff;
}

body.page-home .work-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 28px;
}

body.page-home .work-card{
  min-width: 0;
  padding: 16px 16px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(47, 36, 29, 0.03);
}

body.page-home .work-thumb{
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #f4eee8;
}

body.page-home .work-card h3{
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 800;
}

body.page-home .thumb-map{
  background:
    linear-gradient(45deg, transparent 48%, rgba(216, 184, 148, 0.58) 49%, rgba(216, 184, 148, 0.58) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(216, 184, 148, 0.48) 49%, rgba(216, 184, 148, 0.48) 51%, transparent 52%),
    #f3eee7;
  background-size: 38px 38px;
}

body.page-home .work-pin{
  position: absolute;
  left: 28%;
  top: 43%;
  width: 26px;
  height: 26px;
  background: var(--color-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

body.page-home .work-pin::after{
  content: "";
  position: absolute;
  inset: 7px;
  background: #fff;
  border-radius: 50%;
}

body.page-home .work-panel{
  position: absolute;
  right: 14px;
  top: 18px;
  width: 42%;
  height: calc(100% - 36px);
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
}

body.page-home .work-panel span,
body.page-home .desktop-frame span,
body.page-home .form-mini span{
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #d8cdc4;
}

body.page-home .thumb-website{
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-home .desktop-frame{
  position: relative;
  width: 68%;
  height: 72%;
  padding: 10px;
  border: 4px solid #2f241d;
  border-radius: var(--radius-sm);
  background: #fff;
}

body.page-home .desktop-photo{
  height: 46%;
  margin-bottom: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ecd8c5, #fff8ee 50%, #c8ad96);
}

body.page-home .phone-frame{
  position: absolute;
  right: 18%;
  bottom: 15%;
  width: 17%;
  height: 55%;
  border: 4px solid #2f241d;
  border-radius: var(--radius-sm);
  background: linear-gradient(#fff, #f3e7da);
}

body.page-home .thumb-contact{
  display: grid;
  grid-template-columns: 1fr 12px 1fr;
  gap: 12px;
  align-items: center;
  padding: 22px;
}

body.page-home .bubble-one,
body.page-home .bubble-two{
  height: 42px;
  border-radius: var(--radius-sm);
  background: #ece4dc;
  position: relative;
}

body.page-home .bubble-two{
  margin-left: 24px;
  background: #efe0d0;
}

body.page-home .thumb-contact::before{
  content: "→";
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--color-primary);
  font-weight: 900;
}

body.page-home .form-mini{
  grid-column: 3;
  grid-row: 1 / 3;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--color-border);
}




/* =========================
  Responsive
========================= */

@media (max-width: 1080px) {body.page-home .global-nav ul{
    gap: 18px;
  }

body.page-home .site-logo{
    font-size: 20px;
  }


}



@media (max-width: 1040px) {body.page-home .hero{
    min-height: auto;
  }

body.page-home .hero-inner{
    grid-template-columns: 1fr;
    max-width: 760px;
  }

body.page-home .hero-content{
    max-width: none;
  }

body.page-home .hero-flow{
    max-width: none;
    justify-self: stretch;
  }


}



@media (max-width: 980px) {body.page-home .global-nav{
    display: none;
  }


}



@media (max-width: 760px) {body.page-home .section{
    padding: 70px 20px;
  }

body.page-home .service-list,
body.page-home .reason-list,
body.page-home .work-list{
    grid-template-columns: 1fr;
  }

body.page-home .reason-item{
    padding: 28px 16px;
  }

body.page-home .reason-item:not(:last-child){
    border-right: none;
    border-bottom: 1px solid #dccfc2;
  }


}



@media (max-width: 640px) {body.page-home{
    letter-spacing: 0.02em;
  }

body.page-home .header-inner{
    min-height: 68px;
    padding: 0 18px;
    gap: 14px;
  }

body.page-home .site-logo{
    font-size: 17px;
  }

body.page-home .header-cta{
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

body.page-home .hero{
    padding: 50px 20px 64px;
  }

body.page-home .hero-content h1{
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.34;
  }

body.page-home .hero-lead br{
    display: none;
  }

body.page-home .hero-buttons,
body.page-home .cta-buttons{
    flex-direction: column;
  }

body.page-home .btn{
    width: 100%;
    min-width: 0;
  }

body.page-home .hero-points{
    display: grid;
    grid-template-columns: 1fr;
  }

body.page-home .flow-card{
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 14px;
  }

body.page-home .flow-visual{
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

body.page-home .flow-arrow{
    width: 28px;
    height: 28px;
  }

body.page-home .section-heading{
    margin-bottom: 32px;
  }

body.page-home .service-card{
    padding: 34px 22px;
  }

body.page-home .service-card p br{
    display: none;
  }

body.page-home .cta-section{
    padding: 0 20px 64px;
  }

body.page-home .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }


}



@media (max-width: 420px) {body.page-home .site-logo{
    font-size: 15px;
  }

body.page-home .header-cta{
    padding: 0 12px;
  }


}




/* =========================
  Page: service
========================= */

/* =========================
  Compact Page Hero
========================= */
body.page-service .page-hero{
  padding: 62px 24px 68px;
  background:
    radial-gradient(circle at 80% 20%, rgba(198, 82, 47, 0.06), transparent 28%),
    linear-gradient(90deg, #fbf8f3 0%, #fbf8f3 56%, #f6efe7 100%);
  border-bottom: 1px solid rgba(232, 221, 210, 0.62);
}

body.page-service .page-hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 48px;
  align-items: center;
}

body.page-service .page-hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.page-service .page-hero-lead{
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-service .page-hero-summary{
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

body.page-service .summary-title{
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page-service .summary-main{
  padding: 20px 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--primary-dark);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

body.page-service .summary-supports{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

body.page-service .summary-supports span{
  display: block;
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}




/* =========================
  Overview
========================= */
body.page-service .service-overview{
  background: var(--white);
}

body.page-service .overview-grid{
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(3, auto);
  gap: 22px;
}

body.page-service .overview-card{
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(49, 38, 31, 0.04);
}

body.page-service .overview-card-main{
  grid-row: span 3;
  padding: 38px 34px;
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.08), transparent 38%),
    var(--white);
}

body.page-service .card-label{
  display: inline-flex;
  margin: 0 0 14px;
  padding: 5px 11px;
  color: var(--primary);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.page-service .overview-card h3{
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-service .overview-card-main h3{
  font-size: 28px;
}

body.page-service .overview-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

body.page-service .overview-card-main p{
  font-size: 15px;
}




/* =========================
  Main Service
========================= */
body.page-service .main-service{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-service .main-service-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 48px;
  align-items: center;
}

body.page-service .main-service-content h2{
  margin: 0 0 22px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-service .main-service-content p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

body.page-service .main-service-content .btn{
  margin-top: 12px;
}

body.page-service .main-service-list{
  padding: 32px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

body.page-service .main-service-list h3{
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 900;
}

body.page-service .check-list{
  display: grid;
  gap: 12px;
}

body.page-service .check-list li,
body.page-service .recommend-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-service .check-list li::before,
body.page-service .recommend-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-service .check-list li::after,
body.page-service .recommend-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  Support Services
========================= */
body.page-service .support-services{
  background: var(--white);
}

body.page-service .support-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-service .support-card{
  padding: 32px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(49, 38, 31, 0.04);
}

body.page-service .support-icon{
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.page-service .support-card h3{
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-service .support-card p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

body.page-service .support-card ul{
  display: grid;
  gap: 9px;
}

body.page-service .support-card li{
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

body.page-service .support-card li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.86em;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateY(-50%);
}




/* =========================
  Flow
========================= */
body.page-service .service-flow{
  background: var(--bg-soft);
}

body.page-service .flow-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

body.page-service .flow-item{
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(49, 38, 31, 0.035);
}

body.page-service .flow-item:not(:last-child)::after{
  content: "→";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 900;
}

body.page-service .flow-number{
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-service .flow-item h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

body.page-service .flow-item p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}




/* =========================
  Recommend
========================= */
body.page-service .recommend{
  background: var(--white);
}

body.page-service .recommend-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--bg-soft);
}

body.page-service .recommend-heading h2{
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-service .recommend-heading p{
  margin: 0;
  color: var(--muted);
}

body.page-service .recommend-list{
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
}




/* =========================
  Responsive
========================= */

@media (max-width: 1024px) {body.page-service .global-nav{
    display: none;
  }

body.page-service .page-hero-inner,
body.page-service .main-service-layout,
body.page-service .recommend-box{
    grid-template-columns: 1fr;
  }

body.page-service .page-hero-summary{
    max-width: 620px;
  }

body.page-service .support-grid,
body.page-service .flow-list{
    grid-template-columns: 1fr;
  }

body.page-service .flow-list{
    gap: 34px;
  }

body.page-service .flow-item:not(:last-child)::after{
    top: auto;
    right: 50%;
    bottom: -28px;
    transform: translateX(50%) rotate(90deg);
  }


}



@media (max-width: 820px) {body.page-service .overview-grid{
    grid-template-columns: 1fr;
  }

body.page-service .overview-card-main{
    grid-row: auto;
  }


}



@media (max-width: 640px) {body.page-service{
    letter-spacing: 0.02em;
  }

body.page-service .header-inner{
    min-height: 68px;
    padding: 0 18px;
  }

body.page-service .site-logo{
    font-size: 17px;
  }

body.page-service .header-cta{
    height: 40px;
    min-width: auto;
    padding: 0 14px;
    font-size: 13px;
  }

body.page-service .page-hero{
    padding: 46px 20px 56px;
  }

body.page-service .page-hero-content h1{
    font-size: clamp(28px, 8vw, 36px);
  }

body.page-service .page-hero-lead,
body.page-service .section-heading p,
body.page-service .cta-inner p{
    font-size: 14px;
  }

body.page-service .page-hero-lead br,
body.page-service .section-heading h2 br,
body.page-service .section-heading p br,
body.page-service .cta-inner p br{
    display: none;
  }

body.page-service .section{
    padding: 64px 20px;
  }

body.page-service .section-heading{
    margin-bottom: 34px;
    text-align: left;
  }

body.page-service .section-heading h2{
    font-size: 25px;
  }

body.page-service .section-heading .section-label{
    justify-content: flex-start;
  }

body.page-service .overview-card,
body.page-service .overview-card-main,
body.page-service .support-card,
body.page-service .main-service-list{
    padding: 26px 22px;
  }

body.page-service .overview-card-main h3{
    font-size: 24px;
  }

body.page-service .btn{
    width: 100%;
  }

body.page-service .main-service-content .btn{
    width: auto;
  }

body.page-service .recommend-box{
    padding: 32px 22px;
  }

body.page-service .recommend-list{
    padding: 22px;
  }

body.page-service .cta-section{
    padding: 0 20px 64px;
  }

body.page-service .cta-buttons{
    flex-direction: column;
  }

body.page-service .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

body.page-service .footer-nav ul{
    gap: 16px;
  }


}



@media (max-width: 420px) {body.page-service .site-logo{
    font-size: 16px;
  }

body.page-service .header-cta{
    padding: 0 12px;
  }


}




/* =========================
  Page: meo
========================= */

/* =========================
  MEO Hero
========================= */
body.page-meo .meo-hero{
  padding: 54px 24px 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 82, 47, 0.05), transparent 26%),
    linear-gradient(90deg, #fbf8f3 0%, #fbf8f3 58%, #f5eee6 100%);
  border-bottom: 1px solid rgba(232, 221, 210, 0.64);
}

body.page-meo .meo-hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 44px;
  align-items: center;
}

body.page-meo .meo-hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.52;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.page-meo .meo-hero-lead{
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-meo .meo-hero-summary{
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

body.page-meo .summary-title{
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body.page-meo .summary-main{
  padding: 18px 16px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 14px;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 900;
  text-align: center;
}

body.page-meo .summary-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

body.page-meo .summary-list li{
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}




/* =========================
  Problem
========================= */
body.page-meo .meo-problem{
  background: var(--white);
}

body.page-meo .problem-layout{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 44px;
  align-items: center;
}

body.page-meo .problem-text{
  padding: 34px 32px;
  border-left: 4px solid var(--primary);
  background: var(--bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

body.page-meo .problem-text p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-meo .problem-text p + p{
  margin-top: 18px;
}

body.page-meo .problem-list{
  display: grid;
  gap: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-meo .problem-list li{
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-meo .problem-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-meo .problem-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 7px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  Concept
========================= */
body.page-meo .meo-concept{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-meo .concept-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-meo .concept-card{
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-meo .concept-card::after{
  content: "";
  position: absolute;
  top: 36px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(198, 82, 47, 0.07);
}

body.page-meo .concept-number{
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-meo .concept-card h3{
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}

body.page-meo .concept-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Support Details
========================= */
body.page-meo .meo-support{
  background: var(--white);
}

body.page-meo .support-detail-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

body.page-meo .support-detail-card{
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(49, 38, 31, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-meo .support-detail-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

body.page-meo .support-detail-card h3{
  position: relative;
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-meo .support-detail-card h3::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-meo .support-detail-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Flow
========================= */
body.page-meo .meo-flow{
  background: var(--bg-soft);
}

body.page-meo .flow-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

body.page-meo .flow-item{
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(49, 38, 31, 0.035);
}

body.page-meo .flow-item:not(:last-child)::after{
  content: "→";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 900;
}

body.page-meo .flow-number{
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-meo .flow-item h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

body.page-meo .flow-item p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}




/* =========================
  Policy
========================= */
body.page-meo .meo-policy{
  background: var(--white);
}

body.page-meo .policy-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

body.page-meo .policy-card{
  padding: 34px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-meo .policy-card h3{
  margin: 0 0 20px;
  font-size: 23px;
  font-weight: 900;
}

body.page-meo .policy-card ul{
  display: grid;
  gap: 12px;
}

body.page-meo .policy-card li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-meo .policy-do li::before,
body.page-meo .policy-dont li::before{
  position: absolute;
  left: 0;
  top: 0.76em;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

body.page-meo .policy-do{
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 38%),
    var(--white);
}

body.page-meo .policy-do li::before{
  content: "✓";
  background: var(--primary);
}

body.page-meo .policy-dont{
  background:
    linear-gradient(135deg, rgba(49, 38, 31, 0.045), transparent 38%),
    var(--white);
}

body.page-meo .policy-dont li::before{
  content: "–";
  background: var(--muted);
}




/* =========================
  Recommend
========================= */
body.page-meo .meo-recommend{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-meo .recommend-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-meo .recommend-heading h2{
  margin: 0;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-meo .recommend-list{
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg);
}

body.page-meo .recommend-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-meo .recommend-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-meo .recommend-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  FAQ
========================= */
body.page-meo .meo-faq{
  background: var(--white);
}

body.page-meo .faq-list{
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

body.page-meo .faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(49, 38, 31, 0.035);
  overflow: hidden;
}

body.page-meo .faq-item summary{
  position: relative;
  padding: 22px 56px 22px 24px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

body.page-meo .faq-item summary::-webkit-details-marker{
  display: none;
}

body.page-meo .faq-item summary::marker{
  content: "";
}

body.page-meo .faq-item summary::before{
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

body.page-meo .faq-item summary::after{
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}

body.page-meo .faq-item[open] summary::after{
  content: "−";
}

body.page-meo .faq-item p{
  margin: 0;
  padding: 0 24px 24px 64px;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Responsive
========================= */

@media (max-width: 1024px) {body.page-meo .global-nav{
    display: none;
  }

body.page-meo .meo-hero-inner,
body.page-meo .problem-layout,
body.page-meo .recommend-box{
    grid-template-columns: 1fr;
  }

body.page-meo .meo-hero-summary{
    max-width: 520px;
  }

body.page-meo .support-detail-grid,
body.page-meo .concept-grid,
body.page-meo .flow-list,
body.page-meo .policy-grid{
    grid-template-columns: 1fr;
  }

body.page-meo .flow-list{
    gap: 34px;
  }

body.page-meo .flow-item:not(:last-child)::after{
    top: auto;
    right: 50%;
    bottom: -28px;
    transform: translateX(50%) rotate(90deg);
  }


}



@media (max-width: 640px) {body.page-meo{
    letter-spacing: 0.02em;
  }

body.page-meo .header-inner{
    min-height: 68px;
    padding: 0 18px;
  }

body.page-meo .site-logo{
    font-size: 17px;
  }

body.page-meo .header-cta{
    height: 40px;
    min-width: auto;
    padding: 0 14px;
    font-size: 13px;
  }

body.page-meo .meo-hero{
    padding: 50px 20px 58px;
  }

body.page-meo .meo-hero-content h1{
    font-size: clamp(30px, 8vw, 38px);
  }

body.page-meo .meo-hero-lead{
    font-size: 14px;
  }

body.page-meo .cta-buttons{
    flex-direction: column;
  }

body.page-meo .btn{
    width: 100%;
  }

body.page-meo .summary-list{
    grid-template-columns: 1fr;
  }

body.page-meo .section{
    padding: 64px 20px;
  }

body.page-meo .section-heading{
    margin-bottom: 34px;
    text-align: left;
  }

body.page-meo .section-heading h2{
    font-size: 25px;
  }

body.page-meo .section-heading p{
    font-size: 14px;
  }

body.page-meo .section-heading .section-label{
    justify-content: flex-start;
  }

body.page-meo .section-heading h2 br,
body.page-meo .section-heading p br,
body.page-meo .cta-inner p br{
    display: none;
  }

body.page-meo .problem-text,
body.page-meo .problem-list,
body.page-meo .support-detail-card,
body.page-meo .concept-card,
body.page-meo .policy-card{
    padding: 26px 22px;
  }

body.page-meo .recommend-box{
    padding: 32px 22px;
  }

body.page-meo .recommend-list{
    padding: 22px;
  }

body.page-meo .faq-item summary{
    padding: 20px 48px 20px 20px;
  }

body.page-meo .faq-item summary::before{
    display: inline-grid;
    margin-right: 8px;
  }

body.page-meo .faq-item p{
    padding: 0 20px 22px 20px;
  }

body.page-meo .cta-section{
    padding: 0 20px 64px;
  }

body.page-meo .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

body.page-meo .footer-nav ul{
    gap: 16px;
  }


}



@media (max-width: 420px) {body.page-meo .site-logo{
    font-size: 16px;
  }

body.page-meo .header-cta{
    padding: 0 12px;
  }


}




/* =========================
  Page: website
========================= */

/* =========================
  Website Hero
========================= */
body.page-website .website-hero{
  padding: 54px 24px 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 82, 47, 0.05), transparent 26%),
    linear-gradient(90deg, #fbf8f3 0%, #fbf8f3 58%, #f5eee6 100%);
  border-bottom: 1px solid rgba(232, 221, 210, 0.64);
}

body.page-website .website-hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 44px;
  align-items: center;
}

body.page-website .website-hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.52;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.page-website .website-hero-lead{
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-website .website-hero-summary{
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

body.page-website .summary-title{
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body.page-website .summary-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

body.page-website .summary-list li{
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}




/* =========================
  Problem
========================= */
body.page-website .website-problem{
  background: var(--white);
}

body.page-website .problem-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--bg-soft);
}

body.page-website .problem-heading h2{
  margin: 0 0 16px;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-website .problem-heading p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-website .problem-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
}

body.page-website .problem-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-website .problem-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-website .problem-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  Concept
========================= */
body.page-website .website-concept{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-website .concept-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-website .concept-card{
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-website .concept-card::after{
  content: "";
  position: absolute;
  top: 34px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(198, 82, 47, 0.07);
}

body.page-website .concept-number{
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-website .concept-card h3{
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-website .concept-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Support
========================= */
body.page-website .website-support{
  background: var(--white);
}

body.page-website .support-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

body.page-website .support-card{
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-website .support-card::after{
  content: "";
  position: absolute;
  top: 32px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198, 82, 47, 0.07);
}

body.page-website .support-number{
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-website .support-card h3{
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-website .support-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Flow
========================= */
body.page-website .website-flow{
  background: var(--bg-soft);
}

body.page-website .flow-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.page-website .flow-item{
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(49, 38, 31, 0.035);
}

body.page-website .flow-number{
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-website .flow-item h3{
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 900;
}

body.page-website .flow-item p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Recommend
========================= */
body.page-website .website-recommend{
  background: var(--white);
}

body.page-website .recommend-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--bg-soft);
}

body.page-website .recommend-heading h2{
  margin: 0;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-website .recommend-list{
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
}

body.page-website .recommend-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-website .recommend-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-website .recommend-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  Policy
========================= */
body.page-website .website-policy{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-website .policy-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(49, 38, 31, 0.04), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-website .policy-heading h2{
  margin: 0;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-website .policy-list{
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg);
}

body.page-website .policy-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-website .policy-list li::before{
  content: "–";
  position: absolute;
  left: 0;
  top: 0.76em;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #fff;
  background: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}




/* =========================
  FAQ
========================= */
body.page-website .website-faq{
  background: var(--white);
}

body.page-website .faq-list{
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

body.page-website .faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(49, 38, 31, 0.035);
  overflow: hidden;
}

body.page-website .faq-item summary{
  position: relative;
  padding: 22px 56px 22px 24px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

body.page-website .faq-item summary::-webkit-details-marker{
  display: none;
}

body.page-website .faq-item summary::marker{
  content: "";
}

body.page-website .faq-item summary::before{
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

body.page-website .faq-item summary::after{
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}

body.page-website .faq-item[open] summary::after{
  content: "−";
}

body.page-website .faq-item p{
  margin: 0;
  padding: 0 24px 24px 64px;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Responsive
========================= */

@media (max-width: 1120px) {body.page-website .global-nav{
    display: none;
  }

body.page-website .support-grid,
body.page-website .flow-list{
    grid-template-columns: repeat(2, 1fr);
  }


}



@media (max-width: 1024px) {body.page-website .website-hero-inner,
body.page-website .problem-box,
body.page-website .recommend-box,
body.page-website .policy-box{
    grid-template-columns: 1fr;
  }

body.page-website .website-hero-summary{
    max-width: 520px;
  }

body.page-website .concept-grid{
    grid-template-columns: 1fr;
  }


}



@media (max-width: 760px) {body.page-website .support-grid,
body.page-website .flow-list{
    grid-template-columns: 1fr;
  }


}



@media (max-width: 640px) {body.page-website{
    letter-spacing: 0.02em;
  }

body.page-website .header-inner{
    min-height: 68px;
    padding: 0 18px;
  }

body.page-website .site-logo{
    font-size: 17px;
  }

body.page-website .header-cta{
    height: 40px;
    min-width: auto;
    padding: 0 14px;
    font-size: 13px;
  }

body.page-website .website-hero{
    padding: 46px 20px 54px;
  }

body.page-website .website-hero-content h1{
    font-size: clamp(28px, 8vw, 36px);
  }

body.page-website .website-hero-lead{
    font-size: 14px;
  }

body.page-website .summary-list{
    grid-template-columns: 1fr;
  }

body.page-website .section{
    padding: 64px 20px;
  }

body.page-website .section-heading{
    margin-bottom: 34px;
    text-align: left;
  }

body.page-website .section-heading h2{
    font-size: 25px;
  }

body.page-website .section-heading p{
    font-size: 14px;
  }

body.page-website .section-heading .section-label{
    justify-content: flex-start;
  }

body.page-website .section-heading h2 br,
body.page-website .section-heading p br,
body.page-website .problem-heading h2 br,
body.page-website .cta-inner p br{
    display: none;
  }

body.page-website .problem-box,
body.page-website .recommend-box,
body.page-website .policy-box{
    padding: 32px 22px;
  }

body.page-website .problem-list,
body.page-website .recommend-list,
body.page-website .policy-list{
    padding: 22px;
  }

body.page-website .concept-card,
body.page-website .support-card,
body.page-website .flow-item{
    padding: 28px 22px;
  }

body.page-website .faq-item summary{
    padding: 20px 48px 20px 20px;
  }

body.page-website .faq-item summary::before{
    display: inline-grid;
    margin-right: 8px;
  }

body.page-website .faq-item p{
    padding: 0 20px 22px 20px;
  }

body.page-website .cta-section{
    padding: 0 20px 64px;
  }

body.page-website .cta-buttons{
    flex-direction: column;
  }

body.page-website .btn{
    width: 100%;
  }

body.page-website .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

body.page-website .footer-nav ul{
    gap: 16px;
  }


}



@media (max-width: 420px) {body.page-website .site-logo{
    font-size: 16px;
  }

body.page-website .header-cta{
    padding: 0 12px;
  }


}




/* =========================
  Page: works
========================= */

/* =========================
  Works Hero
========================= */
body.page-works .works-hero{
  padding: 54px 24px 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 82, 47, 0.05), transparent 26%),
    linear-gradient(90deg, #fbf8f3 0%, #fbf8f3 58%, #f5eee6 100%);
  border-bottom: 1px solid rgba(232, 221, 210, 0.64);
}

body.page-works .works-hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 44px;
  align-items: center;
}

body.page-works .works-hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.52;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.page-works .works-hero-lead{
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-works .works-hero-summary{
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

body.page-works .summary-title{
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body.page-works .summary-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

body.page-works .summary-list li{
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}




/* =========================
  Works Policy
========================= */
body.page-works .works-policy{
  background: var(--white);
}

body.page-works .policy-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-works .policy-card{
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-works .policy-card::after{
  content: "";
  position: absolute;
  top: 34px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(198, 82, 47, 0.07);
}

body.page-works .policy-number{
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-works .policy-card h3{
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-works .policy-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Works List
========================= */
body.page-works .works-list{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-works .works-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

body.page-works .work-card{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-works .work-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

body.page-works .work-thumb{
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-soft);
}

body.page-works .work-thumb::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.95) 0 9%, transparent 10%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.7) 0 12%, transparent 13%),
    linear-gradient(135deg, rgba(198, 82, 47, 0.12), transparent 42%);
}

body.page-works .work-thumb::after{
  content: "";
  position: absolute;
  width: 78px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(49, 38, 31, 0.08);
}

body.page-works .work-thumb span{
  position: relative;
  z-index: 1;
  padding: 7px 13px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

body.page-works .work-thumb img{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-works .work-thumb img + span{
  z-index: 2;
}

body.page-works .work-thumb-tool{
  background: linear-gradient(135deg, #f5eee6, #ead8c8);
}

body.page-works .work-thumb-lp{
  background: linear-gradient(135deg, #f8f1ea, #f0ded0);
}

body.page-works .work-thumb-website{
  background: linear-gradient(135deg, #f5eee6, #efe4d8);
}

body.page-works .work-thumb-contact{
  background: linear-gradient(135deg, #f8f3ed, #ead9ca);
}

body.page-works .work-thumb-sns{
  background: linear-gradient(135deg, #f7efe7, #efdfd2);
}

body.page-works .work-thumb-event{
  background: linear-gradient(135deg, #f6eee6, #e8d5c5);
}

body.page-works .work-card-body{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
}

body.page-works .work-category{
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 11px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

body.page-works .work-card h3{
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-works .work-card p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

body.page-works .work-card ul{
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

body.page-works .work-card li{
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

body.page-works .work-card li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.86em;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateY(-50%);
}

body.page-works .work-card .text-link{
  margin-top: auto;
}




/* =========================
  Works Flow
========================= */
body.page-works .works-flow{
  background: var(--white);
}

body.page-works .flow-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

body.page-works .flow-item{
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(49, 38, 31, 0.035);
}

body.page-works .flow-item:not(:last-child)::after{
  content: "→";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 900;
}

body.page-works .flow-number{
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-works .flow-item h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

body.page-works .flow-item p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}




/* =========================
  Works Values
========================= */
body.page-works .works-values{
  background: var(--bg-soft);
}

body.page-works .value-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-works .value-card{
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-works .value-number{
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-works .value-card h3{
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-works .value-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Works Future
========================= */
body.page-works .works-future{
  background: var(--white);
}

body.page-works .future-box{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--bg-soft);
}

body.page-works .future-content h2{
  margin: 0 0 16px;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-works .future-content p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-works .future-list{
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
}

body.page-works .future-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-works .future-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-works .future-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  Responsive
========================= */

@media (max-width: 1024px) {body.page-works .global-nav{
    display: none;
  }

body.page-works .works-hero-inner,
body.page-works .future-box{
    grid-template-columns: 1fr;
  }

body.page-works .works-hero-summary{
    max-width: 520px;
  }

body.page-works .policy-grid,
body.page-works .works-grid,
body.page-works .flow-list,
body.page-works .value-grid{
    grid-template-columns: 1fr;
  }

body.page-works .flow-list{
    gap: 34px;
  }

body.page-works .flow-item:not(:last-child)::after{
    top: auto;
    right: 50%;
    bottom: -28px;
    transform: translateX(50%) rotate(90deg);
  }


}



@media (max-width: 640px) {body.page-works{
    letter-spacing: 0.02em;
  }

body.page-works .header-inner{
    min-height: 68px;
    padding: 0 18px;
  }

body.page-works .site-logo{
    font-size: 17px;
  }

body.page-works .header-cta{
    height: 40px;
    min-width: auto;
    padding: 0 14px;
    font-size: 13px;
  }

body.page-works .works-hero{
    padding: 46px 20px 54px;
  }

body.page-works .works-hero-content h1{
    font-size: clamp(28px, 8vw, 36px);
  }

body.page-works .works-hero-lead{
    font-size: 14px;
  }

body.page-works .summary-list{
    grid-template-columns: 1fr;
  }

body.page-works .section{
    padding: 64px 20px;
  }

body.page-works .section-heading{
    margin-bottom: 34px;
    text-align: left;
  }

body.page-works .section-heading h2{
    font-size: 25px;
  }

body.page-works .section-heading p{
    font-size: 14px;
  }

body.page-works .section-heading .section-label{
    justify-content: flex-start;
  }

body.page-works .section-heading h2 br,
body.page-works .section-heading p br,
body.page-works .cta-inner p br{
    display: none;
  }

body.page-works .policy-card,
body.page-works .work-card-body,
body.page-works .value-card{
    padding: 26px 22px;
  }

body.page-works .work-thumb{
    min-height: 128px;
  }

body.page-works .future-box{
    padding: 32px 22px;
  }

body.page-works .future-list{
    padding: 22px;
  }

body.page-works .cta-section{
    padding: 0 20px 64px;
  }

body.page-works .cta-buttons{
    flex-direction: column;
  }

body.page-works .btn{
    width: 100%;
  }

body.page-works .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

body.page-works .footer-nav ul{
    gap: 16px;
  }


}



@media (max-width: 420px) {body.page-works .site-logo{
    font-size: 16px;
  }

body.page-works .header-cta{
    padding: 0 12px;
  }


}




/* =========================
  Page: profile
========================= */

/* =========================
  Profile Hero
========================= */
body.page-profile .profile-hero{
  padding: 54px 24px 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 82, 47, 0.05), transparent 26%),
    linear-gradient(90deg, #fbf8f3 0%, #fbf8f3 58%, #f5eee6 100%);
  border-bottom: 1px solid rgba(232, 221, 210, 0.64);
}

body.page-profile .profile-hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 44px;
  align-items: center;
}

body.page-profile .profile-hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.52;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.page-profile .profile-hero-lead{
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-profile .profile-hero-summary{
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

body.page-profile .summary-title{
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body.page-profile .summary-name{
  padding: 18px 16px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 14px;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 900;
  text-align: center;
}

body.page-profile .summary-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

body.page-profile .summary-list li{
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}




/* =========================
  Intro
========================= */
body.page-profile .profile-intro{
  background: var(--white);
}

body.page-profile .profile-intro-main-heading{
  margin-bottom: 38px;
}

body.page-profile .profile-intro-layout{
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

body.page-profile .profile-photo-card{
  margin: 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 38%),
    var(--bg);
  box-shadow: var(--shadow-soft);
}

body.page-profile .profile-photo-frame{
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid rgba(232, 221, 210, 0.9);
}

body.page-profile .profile-photo-frame img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.page-profile .profile-photo-card figcaption{
  margin-top: 16px;
  text-align: center;
}

body.page-profile .profile-photo-card figcaption span{
  display: block;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

body.page-profile .profile-photo-card figcaption small{
  display: block;
  margin-top: 4px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

body.page-profile .profile-intro-content{
  padding: 38px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.05), transparent 38%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-profile .profile-name{
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 900;
}

body.page-profile .profile-title{
  margin: 6px 0 26px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

body.page-profile .profile-intro-content p:not(.profile-name):not(.profile-title){
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-profile .profile-intro-content p:not(.profile-name):not(.profile-title) + p{
  margin-top: 18px;
}




/* =========================
  Values
========================= */
body.page-profile .profile-values{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-profile .value-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-profile .value-card{
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-profile .value-card::after{
  content: "";
  position: absolute;
  top: 34px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(198, 82, 47, 0.07);
}

body.page-profile .value-number{
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-profile .value-card h3{
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-profile .value-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Experience
========================= */
body.page-profile .profile-experience{
  background: var(--white);
}

body.page-profile .experience-list{
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

body.page-profile .experience-item{
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-profile .experience-number{
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.page-profile .experience-item h3{
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-profile .experience-item p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Story
========================= */
body.page-profile .profile-story{
  background: var(--bg-soft);
}

body.page-profile .story-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-profile .story-heading h2{
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-profile .story-content p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-profile .story-content p + p{
  margin-top: 18px;
}




/* =========================
  Support Policy
========================= */
body.page-profile .profile-support-policy{
  background: var(--white);
}

body.page-profile .support-policy-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--bg-soft);
}

body.page-profile .support-policy-heading h2{
  margin: 0;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-profile .support-policy-list{
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
}

body.page-profile .support-policy-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-profile .support-policy-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-profile .support-policy-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  Skills
========================= */
body.page-profile .profile-skills{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-profile .skill-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

body.page-profile .skill-card{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(49, 38, 31, 0.035);
  font-size: 14px;
  font-weight: 800;
}




/* =========================
  Recommend
========================= */
body.page-profile .profile-recommend{
  background: var(--white);
}

body.page-profile .recommend-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--bg-soft);
}

body.page-profile .recommend-heading h2{
  margin: 0;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-profile .recommend-list{
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
}

body.page-profile .recommend-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-profile .recommend-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-profile .recommend-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  Responsive
========================= */

@media (max-width: 1024px) {body.page-profile .global-nav{
    display: none;
  }

body.page-profile .profile-hero-inner,
body.page-profile .profile-intro-layout,
body.page-profile .story-box,
body.page-profile .support-policy-box,
body.page-profile .recommend-box{
    grid-template-columns: 1fr;
  }

body.page-profile .profile-hero-summary{
    max-width: 520px;
  }

body.page-profile .profile-photo-card{
    max-width: 360px;
  }

body.page-profile .value-grid{
    grid-template-columns: 1fr;
  }


}



@media (max-width: 640px) {body.page-profile{
    letter-spacing: 0.02em;
  }

body.page-profile .header-inner{
    min-height: 68px;
    padding: 0 18px;
  }

body.page-profile .site-logo{
    font-size: 17px;
  }

body.page-profile .header-cta{
    height: 40px;
    min-width: auto;
    padding: 0 14px;
    font-size: 13px;
  }

body.page-profile .profile-hero{
    padding: 46px 20px 54px;
  }

body.page-profile .profile-hero-content h1{
    font-size: clamp(28px, 8vw, 36px);
  }

body.page-profile .profile-hero-lead{
    font-size: 14px;
  }

body.page-profile .section{
    padding: 64px 20px;
  }

body.page-profile .section-heading{
    margin-bottom: 34px;
    text-align: left;
  }

body.page-profile .section-heading h2{
    font-size: 25px;
  }

body.page-profile .section-heading p{
    font-size: 14px;
  }

body.page-profile .section-heading .section-label{
    justify-content: flex-start;
  }

body.page-profile .section-heading h2 br,
body.page-profile .section-heading p br,
body.page-profile .support-policy-heading h2 br,
body.page-profile .cta-inner p br{
    display: none;
  }

body.page-profile .profile-intro-content,
body.page-profile .profile-photo-card,
body.page-profile .value-card,
body.page-profile .experience-item{
    padding: 26px 22px;
  }

body.page-profile .profile-photo-card{
    max-width: 100%;
  }

body.page-profile .experience-item{
    grid-template-columns: 1fr;
    gap: 14px;
  }

body.page-profile .experience-number{
    width: 48px;
    height: 48px;
  }

body.page-profile .story-box,
body.page-profile .support-policy-box,
body.page-profile .recommend-box{
    padding: 32px 22px;
  }

body.page-profile .support-policy-list,
body.page-profile .recommend-list{
    padding: 22px;
  }

body.page-profile .skill-grid{
    justify-content: flex-start;
  }

body.page-profile .skill-card{
    width: 100%;
    border-radius: var(--radius-sm);
  }

body.page-profile .cta-section{
    padding: 0 20px 64px;
  }

body.page-profile .cta-buttons{
    flex-direction: column;
  }

body.page-profile .btn{
    width: 100%;
  }

body.page-profile .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

body.page-profile .footer-nav ul{
    gap: 16px;
  }


}



@media (max-width: 420px) {body.page-profile .site-logo{
    font-size: 16px;
  }

body.page-profile .header-cta{
    padding: 0 12px;
  }


}




/* =========================
  Page: contact
========================= */

/* =========================
  Contact Hero
========================= */
body.page-contact .contact-hero{
  padding: 54px 24px 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 82, 47, 0.05), transparent 26%),
    linear-gradient(90deg, #fbf8f3 0%, #fbf8f3 58%, #f5eee6 100%);
  border-bottom: 1px solid rgba(232, 221, 210, 0.64);
}

body.page-contact .contact-hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 44px;
  align-items: center;
}

body.page-contact .contact-hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.52;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.page-contact .contact-hero-lead{
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-contact .contact-hero-summary{
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

body.page-contact .summary-title{
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body.page-contact .summary-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

body.page-contact .summary-list li{
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}




/* =========================
  Consultation
========================= */
body.page-contact .contact-consultation{
  background: var(--white);
}

body.page-contact .consultation-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

body.page-contact .consultation-card{
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-contact .consultation-card::after{
  content: "";
  position: absolute;
  top: 32px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198, 82, 47, 0.07);
}

body.page-contact .consultation-number{
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-contact .consultation-card h3{
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-contact .consultation-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Preparation
========================= */
body.page-contact .contact-preparation{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-contact .preparation-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.06), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-contact .preparation-heading h2{
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-contact .preparation-heading p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.page-contact .preparation-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg);
}

body.page-contact .preparation-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-contact .preparation-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

body.page-contact .preparation-list li::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}




/* =========================
  Contact Method
========================= */
body.page-contact .contact-method{
  background: var(--white);
}

body.page-contact .method-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

body.page-contact .method-card{
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(198, 82, 47, 0.05), transparent 38%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-contact .method-icon{
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.page-contact .method-card h3{
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.55;
  font-weight: 900;
}

body.page-contact .method-card p{
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
}

body.page-contact .method-card .btn{
  min-width: 220px;
}




/* =========================
  Flow
========================= */
body.page-contact .contact-flow{
  background: var(--bg-soft);
}

body.page-contact .flow-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

body.page-contact .flow-item{
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(49, 38, 31, 0.035);
}

body.page-contact .flow-item:not(:last-child)::after{
  content: "→";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 900;
}

body.page-contact .flow-number{
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.page-contact .flow-item h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

body.page-contact .flow-item p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}




/* =========================
  FAQ
========================= */
body.page-contact .contact-faq{
  background: var(--white);
}

body.page-contact .faq-list{
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

body.page-contact .faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(49, 38, 31, 0.035);
  overflow: hidden;
}

body.page-contact .faq-item summary{
  position: relative;
  padding: 22px 56px 22px 24px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

body.page-contact .faq-item summary::-webkit-details-marker{
  display: none;
}

body.page-contact .faq-item summary::marker{
  content: "";
}

body.page-contact .faq-item summary::before{
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

body.page-contact .faq-item summary::after{
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}

body.page-contact .faq-item[open] summary::after{
  content: "−";
}

body.page-contact .faq-item p{
  margin: 0;
  padding: 0 24px 24px 64px;
  color: var(--muted);
  font-size: 14px;
}




/* =========================
  Notes
========================= */
body.page-contact .contact-notes{
  background: linear-gradient(90deg, var(--bg), var(--bg-soft));
}

body.page-contact .notes-box{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(49, 38, 31, 0.04), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

body.page-contact .notes-heading h2{
  margin: 0;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.6;
  font-weight: 900;
}

body.page-contact .notes-list{
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg);
}

body.page-contact .notes-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-contact .notes-list li::before{
  content: "–";
  position: absolute;
  left: 0;
  top: 0.76em;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #fff;
  background: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}




/* =========================
  Responsive
========================= */

@media (max-width: 1100px) {body.page-contact .consultation-grid{
    grid-template-columns: repeat(2, 1fr);
  }

body.page-contact .flow-list{
    grid-template-columns: 1fr;
    gap: 34px;
  }

body.page-contact .flow-item:not(:last-child)::after{
    top: auto;
    right: 50%;
    bottom: -28px;
    transform: translateX(50%) rotate(90deg);
  }


}



@media (max-width: 1024px) {body.page-contact .global-nav{
    display: none;
  }

body.page-contact .contact-hero-inner,
body.page-contact .preparation-box,
body.page-contact .notes-box{
    grid-template-columns: 1fr;
  }

body.page-contact .contact-hero-summary{
    max-width: 520px;
  }


}



@media (max-width: 760px) {body.page-contact .consultation-grid,
body.page-contact .method-grid,
body.page-contact .preparation-list{
    grid-template-columns: 1fr;
  }


}



@media (max-width: 640px) {body.page-contact{
    letter-spacing: 0.02em;
  }

body.page-contact .header-inner{
    min-height: 68px;
    padding: 0 18px;
  }

body.page-contact .site-logo{
    font-size: 17px;
  }

body.page-contact .header-cta{
    height: 40px;
    min-width: auto;
    padding: 0 14px;
    font-size: 13px;
  }

body.page-contact .contact-hero{
    padding: 46px 20px 54px;
  }

body.page-contact .contact-hero-content h1{
    font-size: clamp(28px, 8vw, 36px);
  }

body.page-contact .contact-hero-lead{
    font-size: 14px;
  }

body.page-contact .summary-list{
    grid-template-columns: 1fr;
  }

body.page-contact .section{
    padding: 64px 20px;
  }

body.page-contact .section-heading{
    margin-bottom: 34px;
    text-align: left;
  }

body.page-contact .section-heading h2{
    font-size: 25px;
  }

body.page-contact .section-heading p{
    font-size: 14px;
  }

body.page-contact .section-heading .section-label{
    justify-content: flex-start;
  }

body.page-contact .section-heading h2 br,
body.page-contact .section-heading p br,
body.page-contact .cta-inner p br{
    display: none;
  }

body.page-contact .consultation-card,
body.page-contact .method-card{
    padding: 28px 22px;
  }

body.page-contact .preparation-box,
body.page-contact .notes-box{
    padding: 32px 22px;
  }

body.page-contact .preparation-list,
body.page-contact .notes-list{
    padding: 22px;
  }

body.page-contact .method-card .btn,
body.page-contact .btn{
    width: 100%;
  }

body.page-contact .faq-item summary{
    padding: 20px 48px 20px 20px;
  }

body.page-contact .faq-item summary::before{
    display: inline-grid;
    margin-right: 8px;
  }

body.page-contact .faq-item p{
    padding: 0 20px 22px 20px;
  }

body.page-contact .cta-section{
    padding: 0 20px 64px;
  }

body.page-contact .cta-buttons{
    flex-direction: column;
  }

body.page-contact .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

body.page-contact .footer-nav ul{
    gap: 16px;
  }


}



@media (max-width: 420px) {body.page-contact .site-logo{
    font-size: 16px;
  }

body.page-contact .header-cta{
    padding: 0 12px;
  }


}




/* =========================
  Site-wide Adjustments
========================= */

body.page-contact .contact-notes + .cta-section {
  padding-top: 44px;
}

@media (max-width: 1180px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: 0;
  }

  .global-nav {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    margin-left: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .site-header.is-nav-open .global-nav {
    display: block !important;
  }

  .global-nav ul {
    display: grid;
    gap: 4px;
  }

  .global-nav a {
    display: block;
    padding: 11px 13px;
    border-radius: var(--radius-sm);
  }

  .global-nav a:hover,
  .global-nav a[aria-current="page"] {
    background: var(--primary-soft);
  }

  .header-cta {
    margin-left: auto;
    min-width: 92px;
    padding: 0 14px;
  }
}

@media (max-width: 640px) {
  body.page-contact .contact-notes + .cta-section {
    padding-top: 34px;
  }

  .global-nav {
    left: 18px;
    right: 18px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
  }

  .header-cta {
    min-width: 78px;
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .nav-toggle {
    padding: 0 12px;
  }

  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
