/* =============================================
   Libre Design Studio — kanako photograph style
   ============================================= */

:root {
  --bg:      #ffffff;
  --text:    #3a3a3a;
  --accent:  #6C727F;
  --border:  #e8e8e8;
  --card-bg: #f5f5f5;

  --serif: 'Libre Baskerville', Georgia, serif;
  --ja:    'Shippori Mincho B1', serif;

  --max: 1160px;
  --px:  0px;
  --sv:  128px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background:var(--bg); color:var(--text);
  font-family:var(--ja); font-weight:500;
  font-size:14px; line-height:1.8;
  -webkit-font-smoothing:antialiased;
  letter-spacing:0.05em;
}
img { display:block; width:100%; height:100%; object-fit:cover; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }


/* ── Nav ──────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:68px; padding:0 var(--px);
  display:flex; align-items:center;
  transition:background .4s, box-shadow .4s;
}
.nav.scrolled {
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  box-shadow:0 1px 0 var(--border);
}
.nav__inner {
  max-width:var(--max); width:100%; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
}
.nav__logo {
  font-family:var(--serif);
  font-size:15px; font-weight:400; letter-spacing:.08em;
}
.nav__links { display:flex; gap:40px; }
.nav__links a {
  font-family:var(--serif); font-size:15px; font-weight:400;
  letter-spacing:.12em; text-transform:uppercase;
  position:relative;
}
.nav__links a::after {
  content:''; position:absolute; bottom:-3px; left:0;
  width:0; height:1px; background:var(--text);
  transition:width .3s;
}
.nav__links a:hover::after { width:100%; }

.nav__sns-item { display:none; }
.nav__sns-icon { display:inline-flex; }

.nav__hamburger {
  display:none; flex-direction:column; gap:6px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.nav__hamburger span {
  display:block; width:24px; height:1px;
  background:var(--text); transition:all .3s;
}
.nav__hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity:0; }
.nav__hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }


/* ── First View ────────────────────────── */
.firstview {
  position:relative;
  width:100%; height:80vh;
  display:flex; align-items:center;
  overflow:hidden;
}
.firstview__bg {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
}
.firstview__overlay { display:none; }
.firstview__scroll-circle {
  position:absolute; right:160px; bottom:60px; z-index:2;
  width:120px; height:120px;
  display:flex; align-items:center; justify-content:center;
  color:#3a3a3a; opacity:.6;
}
.firstview__scroll-circle svg {
  position:absolute; inset:0; width:100%; height:100%;
  animation:rotate-circle 20s linear infinite;
}
.firstview__scroll-arrow {
  font-size:16px; color:#3a3a3a;
  position:relative; z-index:1;
}
@keyframes rotate-circle {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}
.firstview__inner {
  position:relative; z-index:1;
  max-width:var(--max); width:100%; margin:0 auto;
  padding:0 var(--px);
  padding-left:0;
}
.firstview__text { max-width:720px; }
.firstview__catch {
  font-family:var(--ja);
  font-size:60px; font-weight:400;
  line-height:1.7; letter-spacing:.06em;
  color:#000000; margin-bottom:28px;
}
.firstview__sub {
  font-family:var(--serif);
  font-size:16px; font-weight:400;
  letter-spacing:.12em; line-height:1.9;
  color:#000000;
}


/* ── Concept ───────────────────────────── */
.concept {
  display:grid; grid-template-columns:auto 1fr;
  gap:0 200px;
  min-height:480px;
  align-items:stretch;
  padding:var(--sv) var(--px);
  max-width:var(--max); margin:0 auto;
  border-top:1px solid var(--border);
}
.concept__images {
  display:flex; flex-direction:column;
  gap:28px; justify-content:center;
}
.concept__img { overflow:hidden; width:500px; height:250px; }
.concept__img--bottom { transform:translateX(60px); }
.concept__img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .9s cubic-bezier(.25,.46,.45,.94);
}
.concept__img:hover img { transform:scale(1.04); }

.concept__body {
  display:flex; flex-direction:column; justify-content:center;
}
.concept__catch {
  font-family:var(--ja);
  font-size:52px; font-weight:400;
  line-height:1.8; letter-spacing:.1em;
  margin-bottom:48px;
}
.concept__desc {
  font-family:var(--ja); font-size:20px; font-weight:500;
  line-height:2.2; letter-spacing:.05em; opacity:.7;
}

/* ── セクション共通 ────────────────────── */
.sec { border-top:1px solid var(--border); }
.sec__inner {
  max-width:var(--max); margin:0 auto;
  padding:var(--sv) var(--px);
}

.sec-head { text-align:center; margin-bottom:72px; }
.sec-head--left { text-align:left; }

.sec-title::first-letter {
  color:#7A94A8;
}
.sec-title {
  font-family:var(--serif);
  font-size:60px;
  font-weight:400; line-height:1; letter-spacing:0.1em;
  margin-bottom:12px;
}
.sec-sub {
  font-family:var(--ja); font-size:18px; font-weight:500;
  letter-spacing:.14em; color:var(--accent);
}

.sec-cta { text-align:center; margin-top:64px; }


/* ── Buttons ───────────────────────────── */
.btn {
  display:inline-block;
  font-family:var(--serif); font-size:15px; font-weight:400;
  letter-spacing:.2em; text-transform:uppercase;
  padding:14px 48px; border:1px solid var(--text);
  transition:all .3s; cursor:pointer; background:transparent;
  color:var(--text);
}
.btn:hover { background:var(--text); color:var(--bg); }
.btn--fill { background:var(--text); color:var(--bg); }
.btn--fill:hover { background:transparent; color:var(--text); }

.tag {
  font-family:var(--serif); font-size:10px; font-weight:400;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--accent); border:1px solid var(--border);
  padding:3px 9px; display:inline-block;
}


/* ── Service ───────────────────────────── */
.service__grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--border);
  border:1px solid var(--border);
}
.service__card {
  background:var(--bg); padding:48px 32px;
  transition:background .3s;
  position:relative; overflow:hidden;
}
.service__card::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--accent);
  transition:width .4s cubic-bezier(.25,.46,.45,.94);
}
.service__card:hover { background:var(--card-bg); }
.service__card:hover::after { width:100%; }
.service__num {
  font-family:'Helvetica Neue', Arial, sans-serif;
  font-size:42px; font-weight:400;
  color:#7A94A8; display:block;
  margin-bottom:24px; line-height:1;
  opacity:.8;
}
.service__name {
  font-family:var(--ja); font-size:20px; font-weight:600;
  letter-spacing:.08em; margin-bottom:28px;
}
.service__desc {
  font-family:var(--ja); font-size:15px; font-weight:500;
  line-height:1.9; opacity:.6; letter-spacing:.04em;
}


/* ── Works ─────────────────────────────── */
.works-grid {
  display:grid; gap:56px 40px;
  grid-template-columns:repeat(3,1fr);
}
.work-card { cursor:pointer; }
.work-card__img {
  aspect-ratio:1; overflow:hidden; margin-bottom:20px;
}
.work-card__img img { transition:transform .8s cubic-bezier(.25,.46,.45,.94); }
.work-card:hover .work-card__img img { transform:scale(1.04); }

.work-card__brand {
  font-family:var(--serif); font-size:20px; font-weight:400;
  letter-spacing:.04em; margin-bottom:4px;
}
.work-card__cat {
  font-family:var(--ja); font-size:13px; font-weight:500;
  letter-spacing:.14em;
  color:var(--accent); margin-bottom:12px;
}
.work-card__tags { display:flex; gap:6px; flex-wrap:wrap; }


/* ── Process ───────────────────────────── */
.works__bg { background:var(--card-bg); }
.process__list { padding-left:0; border-top:none; }
.process__item {
  display:flex; gap:40px; align-items:flex-start;
  padding:0 0 72px 0; border-bottom:none; margin-left:0;
  position:relative;
}
.process__item:not(:last-child)::after {
  content:''; position:absolute;
  left:22px; top:44px;
  width:1px; height:calc(100% - 44px);
  background:var(--border);
}
.process__num {
  font-family:'Helvetica Neue', Arial, sans-serif;
  font-size:13px; font-weight:400; letter-spacing:.05em;
  color:#7A94A8; flex-shrink:0;
  width:44px; height:44px; border-radius:50%;
  border:1px solid #7A94A8;
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:1; background:#fff;
  line-height:1; margin-right:0;
}
.process__num::after { display:none; }
.process__item > div { padding-top:0; }
.process__title {
  font-family:var(--ja); font-size:21px; font-weight:700;
  letter-spacing:.08em; margin-bottom:8px;
  line-height:44px;
}
.process__desc {
  font-family:var(--ja); font-size:18px; font-weight:500;
  line-height:1.9; opacity:.6;
}


/* ── Profile ───────────────────────────── */
.profile__layout {
  display:grid; grid-template-columns:1fr 1.6fr;
  gap:72px; align-items:flex-start;
}
.profile__photo {
  aspect-ratio:3/4; overflow:hidden;
}
.profile__photo img { width:100%; height:100%; object-fit:cover; }
.profile__role {
  font-family:var(--serif); font-size:28px; font-weight:400;
  letter-spacing:.08em;
  color:var(--text); margin-bottom:8px;
}
.profile__meta {
  font-family:var(--ja); font-size:14px; font-weight:500;
  letter-spacing:.06em; color:var(--accent);
  margin-bottom:48px; opacity:.8;
}
.profile__bio {
  font-family:var(--ja); font-size:16px; font-weight:500;
  line-height:2.2; opacity:.75; margin-bottom:36px;
  letter-spacing:.05em;
}
.profile__skills { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.profile__sns { display:flex; gap:12px; flex-wrap:wrap; }
.sns-btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--serif); font-size:13px; font-weight:400;
  letter-spacing:.12em; text-transform:uppercase;
  padding:12px 32px; border:1px solid var(--text);
  transition:all .3s; cursor:pointer;
}
.sns-btn--instagram:hover { background:#A0687A; border-color:#A0687A; color:#fff; }
.sns-btn--line:hover { background:#4A9B6F; border-color:#4A9B6F; color:#fff; }


/* ── Contact CTA ───────────────────────── */
.cta {
  text-align:center;
  background-image:url('../images/cta-bg.webp');
  background-size:cover;
  background-position:center;
  position:relative;
}
.cta::before {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.75);
}
.cta .sec__inner { position:relative; z-index:1; }
.cta__body {
  font-family:var(--ja); font-size:16px; font-weight:500;
  line-height:2.3; opacity:.7; margin-bottom:48px;
  letter-spacing:.05em;
}


/* ── Footer ────────────────────────────── */
.footer__top-link { display:none; }
.footer {
  border-top:1px solid var(--border);
  padding:24px var(--px);
}
.footer__inner {
  max-width:var(--max); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
}
.footer__logo {
  font-family:var(--serif);
  font-size:11px; font-weight:400; letter-spacing:.15em;
  text-transform:uppercase; opacity:.45; transition:opacity .3s;
}
.footer__logo:hover { opacity:1; }
.footer__links { display:flex; gap:32px; }
.footer__links a {
  font-family:var(--serif); font-size:11px; font-weight:400;
  letter-spacing:.15em; text-transform:uppercase;
  opacity:.45; transition:opacity .3s;
}
.footer__links a:hover { opacity:1; }
.footer__copy {
  font-family:var(--serif); font-size:10px; font-weight:400;
  letter-spacing:.12em; opacity:.35;
}


/* ── Works page ────────────────────────── */
.page-header { padding-top:68px; }
.page-header .sec__inner { padding-bottom:0; }


/* ── Lightbox ──────────────────────────── */
.lightbox {
  display:none; position:fixed; inset:0; z-index:200;
  background:#ffffff;
  align-items:center; justify-content:center;
}
.lightbox.active { display:flex; }
.lightbox__close {
  position:absolute; top:28px; right:36px;
  background:none; border:none; color:rgba(0,0,0,.4);
  font-size:28px; cursor:pointer; transition:color .3s; font-weight:300;
}
.lightbox__close:hover { color:#000000; }
.lightbox__content {
  max-width:80vmin; max-height:80vmin;
  width:60vmin; height:60vmin;
  display:flex; align-items:center; justify-content:center;
}
.lightbox__bg-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
}
.lightbox__content img { max-width:80vw; max-height:80vh; width:auto; height:auto; }
.lightbox__info { display:none; }


/* ── Contact page ──────────────────────── */
.contact-hero { padding-top:68px; }
.contact-hero .sec__inner { padding-bottom:0; }
.contact-hero__desc {
  font-family:var(--ja); font-size:16px; font-weight:500;
  line-height:2.3; opacity:.72; max-width:520px;
  margin:0 auto; text-align:center;
  padding-bottom:12px; letter-spacing:.05em;
}
.contact-hours {
  display:block; width:fit-content; margin:8px auto 48px;
  font-family:var(--ja); font-size:12px; font-weight:500;
  letter-spacing:.06em; color:var(--accent);
  background:#f2f2f0; padding:8px 20px;
}
.contact-form .sec__inner { max-width:720px; padding-top:48px; }
.form-group { margin-bottom:40px; }
.form-label {
  display:block; font-family:var(--ja);
  font-size:15px; font-weight:500;
  letter-spacing:.08em; margin-bottom:14px;
}
.form-label .req {
  font-family:var(--ja); font-size:12px; font-weight:500;
  color:var(--accent); margin-left:8px;
}
.form-input,.form-select,.form-textarea {
  width:100%; background:#f8f8f8; border:1px solid var(--border);
  padding:14px 18px; font-family:var(--ja);
  font-size:16px; font-weight:500; color:var(--text);
  outline:none; transition:border-color .3s, background .3s;
  appearance:none; border-radius:0;
  letter-spacing:.05em;
}
.form-input:focus,.form-select:focus,.form-textarea:focus {
  border-color:var(--text); background:#fff;
}
.form-select {
  background-color:#f8f8f8;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C727F' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center;
  padding-right:40px; cursor:pointer;
}
.form-select:focus { background-color:#fff; }
.form-textarea { resize:none; height:160px; line-height:2; }
.form-input::placeholder,.form-textarea::placeholder { color:var(--accent); opacity:.5; }
.form-submit { text-align:center; margin-top:64px; }
.contact-info { border-top:1px solid var(--border); }
.contact-info .sec__inner { max-width:720px; padding-bottom:var(--sv); display:flex; gap:56px; }
.info-item { flex:1; }
.info-item h4 {
  font-family:var(--serif); font-size:15px; font-weight:400;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--accent); margin-bottom:16px;
}
.info-item p {
  font-family:var(--ja); font-size:16px; font-weight:500;
  line-height:2; letter-spacing:.04em;
}


/* ── Fade-in ────────────────────────────── */
.fade-in {
  opacity:0; transform:translateY(20px);
  transition:opacity 1s cubic-bezier(.16,1,.3,1),
              transform 1s cubic-bezier(.16,1,.3,1);
}
.fade-in.visible { opacity:1; transform:translateY(0); }
.fade-in:nth-child(2) { transition-delay:.1s; }
.fade-in:nth-child(3) { transition-delay:.2s; }
.fade-in:nth-child(4) { transition-delay:.3s; }
.fade-in:nth-child(5) { transition-delay:.4s; }
.fade-in:nth-child(6) { transition-delay:.5s; }


/* ── Responsive : Medium 1200px ───────────
   1160px のmax-widthより少し広い画面から
   横方向の余白を確保する                  */
@media (max-width:1200px) {
  :root { --px:48px; }

  /* Firstview：左端に文字が貼り付かないよう修正 */
  .firstview__inner { padding-left:var(--px); }
  .firstview__scroll-circle { right:var(--px); }
}


/* ── Responsive : Tablet landscape 1024px ─ */
@media (max-width:1024px) {
  /* Concept：固定幅500pxを縮小＋ズレ解除 */
  .concept { gap:0 60px; }
  .concept__img { width:260px; height:200px; }
  .concept__img--bottom { transform:translateX(0); }
  .concept__catch { font-size:42px; }

  /* Service：4列→2列 */
  .service__grid { grid-template-columns:repeat(2,1fr); }

  /* Works：3列→2列 */
  .works-grid { grid-template-columns:repeat(2,1fr); gap:40px 24px; }

  /* Profile：縦並びに余白を調整 */
  .profile__layout { gap:48px; }
}


/* ── Responsive : Tablet 768px ─────────── */
@media (max-width:768px) {
  :root { --px:32px; --sv:80px; }

  /* Nav */
  .nav { padding:0 32px; transition:background .4s, box-shadow .4s, height .4s cubic-bezier(.16,1,.3,1); }
  .nav.menu-open { height:100dvh; height:100vh; background:#fff; box-shadow:none; }
  .nav__links {
    position:absolute; inset:0;
    background:#fff;
    flex-direction:column; align-items:center; justify-content:center;
    gap:36px; padding:0;
    box-shadow:none;
    opacity:0; pointer-events:none;
    transition:opacity .4s cubic-bezier(.16,1,.3,1);
  }
  .nav__links.open { opacity:1; pointer-events:auto; }
  .nav__links a {
    display:block; padding:0;
    font-family:var(--serif); font-size:22px; font-weight:400;
    letter-spacing:.2em; text-transform:uppercase;
    text-align:center; border:none;
  }
  .nav__hamburger { display:flex; position:relative; z-index:1; }
  .nav.menu-open .nav__hamburger {
    position:absolute; top:22px; right:20px;
  }
  .nav__sns-item {
    display:flex; gap:28px; justify-content:center;
    margin-top:8px;
  }
  .nav__sns-icon {
    color:var(--text); opacity:.6;
    transition:opacity .3s;
  }
  .nav__sns-icon:active { opacity:1; }

  /* Firstview */
  .firstview { height:70vh; }
  .firstview__inner { padding-left:var(--px); }
  .firstview__catch { font-size:30px; }
  .firstview__sub { font-size:12px; }
  .firstview__scroll-circle { right:32px; bottom:40px; width:72px; height:72px; }
  .firstview__scroll-circle svg { width:72px; height:72px; }

  /* Concept */
  .concept {
    grid-template-columns:1fr;
    gap:48px 0;
    padding:var(--sv) var(--px);
  }
  .concept__img--top { display:none; }
  .concept__images {
    flex-direction:column; gap:12px;
  }
  .concept__img { width:100%; height:220px; }
  .concept__img--bottom { transform:translateX(0); }
  .concept__catch { font-size:25px; }
  .concept__desc { font-size:15px; }

  /* Service */
  .service__grid { grid-template-columns:1fr; }
  .service__card { padding:20px 20px; }
  .service__num { font-size:28px; margin-bottom:12px; }
  .service__name { font-size:19px; }
  .service__desc { font-size:13px; }

  /* Works */
  .works-grid { grid-template-columns:repeat(2,1fr); gap:32px 6px; }
  .work-card { -webkit-tap-highlight-color:transparent; }
  .work-card__img { position:relative; }
  .work-card:active .work-card__img img { transform:scale(0.97); opacity:.82; transition:transform .15s, opacity .15s; }
  .work-card__brand { font-size:13px; }
  .work-card__cat { font-size:11px; }
  .tag { font-size:9px; }

  /* Process */
  .process__list { padding-left:0; }
  .process__item { gap:24px; padding-bottom:40px; }
  .process__item:not(:last-child)::after { left:18px; top:36px; height:calc(100% - 36px); }
  .process__num { width:36px; height:36px; font-size:11px; }
  .process__title { font-size:19px; line-height:36px; }
  .process__desc { font-size:13px; }

  /* Profile */
  .profile__layout { grid-template-columns:1fr; gap:40px; }
  .profile__photo { max-width:320px; aspect-ratio:3/4; }
  .profile__role { font-size:22px; }
  .profile__bio { font-size:14px; }

  /* Section heading */
  .sec-title { font-size:40px; }
  .sec-sub { font-size:15px; }

  /* Works */
  .work-card__brand { font-size:16px; }
  .work-card__cat { font-size:12px; letter-spacing:.04em; }

  /* Footer */
  .footer { padding:20px 32px; }
  .footer__inner { flex-direction:column; gap:16px; text-align:center; }
  .footer__links { flex-wrap:wrap; justify-content:center; gap:16px; }

  /* Button */
  .btn { font-size:11px; padding:12px 32px; }

  /* Profile SNS */
  .profile__sns { flex-direction:column; gap:8px; align-items:flex-start; }
  .sns-btn {
    font-size:11px; letter-spacing:.08em;
    padding:8px 0; width:140px;
    border:none; border-bottom:1px solid var(--border);
    background:transparent; justify-content:space-between;
  }
  .sns-btn::after { content:'→'; font-size:11px; }
  .sns-btn--instagram::after { color:#A0687A; }
  .sns-btn--line::after { color:#4A9B6F; }

  /* Profile bio */
  .profile__bio { line-height:1.9; }

  /* Profile bio br */
  .br-hide-sp { display:none; }

  /* CTA body */
  .br-sp-show { display:block; }
  .cta__body { font-size:13px; }

  /* Contact hero desc */
  .contact-hero__desc { font-size:13px; }

  /* Nav logo */
  .nav__logo { font-size:11px; }


  /* Footer */
  .footer__logo { display:none; }
  .footer__top-link { display:block; }

  /* Tap feedback */
  .btn:active { background:var(--text); color:var(--bg); }
  .service__card:active { background:var(--card-bg); }
  .service__card:active::after { width:100%; }
  .sns-btn:active { opacity:.7; }
  -webkit-tap-highlight-color: transparent;

  /* Contact */
  .contact-form .sec__inner { padding-left:32px; padding-right:32px; }
}


/* ── Responsive : Mobile 390px ─────────── */
@media (max-width:390px) {
  :root { --px:20px; --sv:56px; }

  /* Nav */
  .nav { padding:0 20px; }
  .nav__logo { font-size:12px; }
  .nav__links a { font-size:18px; }

  /* Firstview */
  .firstview { height:65vh; }
  .firstview__catch { font-size:24px; line-height:1.6; }
  .firstview__sub { font-size:11px; letter-spacing:.08em; }
  .firstview__scroll-circle { display:none; }

  /* Concept */
  .concept { padding:var(--sv) var(--px); gap:40px 0; }
  .concept__images { flex-direction:column; }
  .concept__img { width:100%; height:200px; }
  .concept__catch { font-size:24px; }
  .concept__desc { font-size:13px; }

  /* Service */
  .service__grid { grid-template-columns:1fr; }
  .service__card { padding:32px 20px; }
  .service__num { font-size:32px; }
  .service__name { font-size:16px; }
  .service__desc { font-size:13px; }

  /* Works */
  .works-grid { grid-template-columns:1fr; gap:36px; }
  .work-card__brand { font-size:16px; }
  .work-card__cat { font-size:12px; }

  /* Process */
  .process__item { gap:20px; padding-bottom:32px; }
  .process__item:not(:last-child)::after { left:16px; top:32px; height:calc(100% - 32px); }
  .process__num { width:32px; height:32px; font-size:10px; }
  .process__item > div { padding-top:4px; }
  .process__title { font-size:15px; line-height:32px; }
  .process__desc { font-size:13px; }

  /* Profile */
  .profile__layout { gap:32px; }
  .profile__photo { max-width:260px; }
  .profile__role { font-size:20px; }
  .profile__meta { font-size:12px; }
  .profile__bio { font-size:13px; }
  .profile__sns { flex-direction:column; }
  .sns-btn { text-align:center; justify-content:center; font-size:12px; }

  /* Section heading */
  .sec-title { font-size:44px; }
  .sec-sub { font-size:14px; }

  /* CTA */
  .cta__body { font-size:13px; }

  /* Footer */
  .footer { padding:20px; }
  .footer__inner { gap:14px; }
  .footer__links { gap:12px; }

  /* Contact */
  .contact-hero__desc { font-size:13px; }
  .form-label { font-size:12px; }
  .form-input,.form-select,.form-textarea { font-size:14px; padding:12px 14px; }
  .btn { font-size:13px; padding:12px 36px; }
}
