:root{
  --green:#0f6b2f;
  --green-dark:#0a4e22;
  --green-soft:#dfeedd;
  --cream:#f7f3eb;
  --navy:#0e2240;
  --text:#182235;
  --muted:#5c6877;
  --line:#e6e8eb;
  --panel:#fcfbf8;
  --shadow:0 10px 28px rgba(0,0,0,.08);
  --radius:20px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.45;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{max-width:1240px;margin:0 auto;padding:0 22px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:20;
  background:#fff;border-bottom:1px solid var(--line);
}
.nav{
  min-height:82px;display:flex;align-items:center;gap:20px;justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:12px;min-width:0}
.brandmark{
  position:relative; width:72px; height:50px; flex:0 0 auto;
  font-weight:900; line-height:1;
}
.brandmark .d{
  color:var(--green);font-size:58px;position:absolute;left:0;top:-2px;letter-spacing:-7px;
}
.brandmark .t{
  color:var(--navy);font-size:35px;position:absolute;left:31px;top:2px;letter-spacing:-4px;
}
.brandmark.small{width:52px;height:40px}
.brandmark.small .d{font-size:43px;top:0}
.brandmark.small .t{font-size:27px;left:22px;top:4px}
.brandtext .name{font-size:20px;font-weight:800;letter-spacing:.2px}
.brandtext .name span{color:var(--green)}
.brandtext .tagline{font-size:12px;color:var(--text)}
.menu{display:flex;align-items:center;gap:28px;font-weight:600}
.menu a:hover{color:var(--green)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 24px;border-radius:12px;font-weight:700;
  transition:.2s ease;border:1px solid transparent;
}
.btn-green{
  background:linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color:#fff;box-shadow:0 5px 14px rgba(15,107,47,.22);
}
.btn-green:hover{transform:translateY(-1px)}
.btn-outline{
  background:#fff;border:1px solid #98a0ad;color:var(--text);
}
.btn-top{white-space:nowrap}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(184,215,181,.45) 0, rgba(184,215,181,.18) 18%, rgba(255,255,255,0) 42%),
    linear-gradient(90deg, #fff 0%, #fff 38%, #f6f2ea 63%, #dcebd6 100%);
}
.hero::before{
  content:"";
  position:absolute;inset:auto auto 12% 0;width:230px;height:230px;
  background:radial-gradient(circle, rgba(15,107,47,.09) 0%, rgba(15,107,47,0) 70%);
  filter:blur(5px);
}
.hero-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:18px;align-items:center;
  min-height:640px;padding-top:26px;padding-bottom:18px;
}
.hero-copy h1{
  font-size:clamp(38px, 5.5vw, 66px);
  line-height:1.02;margin:0 0 20px;letter-spacing:-2px;color:var(--navy);
}
.hero-copy h1 span{color:var(--green)}
.hero-lead{
  font-size:18px;max-width:630px;color:var(--text);margin:0 0 22px;
}
.care-card{
  background:rgba(255,255,255,.92);backdrop-filter:blur(3px);
  border:1px solid #dfe2e7;border-radius:18px;box-shadow:var(--shadow);
  display:grid;grid-template-columns:1fr 1fr;gap:24px;padding:18px 20px;margin:26px 0 20px;
}
.care-left{display:flex;gap:14px;align-items:flex-start}
.icon-circle{
  width:54px;height:54px;border-radius:50%;display:grid;place-items:center;
  background:var(--green);color:#fff;font-size:26px;flex:0 0 auto;
}
.care-title{font-size:13px;font-weight:800;letter-spacing:.3px}
.care-price{
  font-size:66px;line-height:.95;font-weight:900;color:var(--green);margin:8px 0 8px;letter-spacing:-2px;
}
.care-price span{font-size:16px;color:#111;font-weight:700;margin-left:4px}
.care-note{font-size:13px;color:#333}
.care-list{margin:0;padding-left:18px;font-size:14px}
.care-list li{margin:11px 0}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}

.hero-visual{position:relative;height:100%;display:flex;align-items:flex-end;justify-content:flex-end}
.hero-glow{
  position:absolute;right:6%;top:13%;width:480px;height:480px;border-radius:50%;
  background:radial-gradient(circle, rgba(156,194,149,.55) 0%, rgba(156,194,149,.2) 36%, rgba(156,194,149,0) 72%);
  filter:blur(6px);
}
.hero-photo-card{
  position:relative;width:100%;height:100%;min-height:620px;
  display:flex;align-items:flex-end;justify-content:flex-end;
}
.hero-photo{
  height:100%;max-height:610px;width:auto;object-fit:contain;object-position:bottom right;
  filter:drop-shadow(0 12px 18px rgba(0,0,0,.14));
}
.service-chip{
  position:absolute;right:0;bottom:78px;
  background:linear-gradient(135deg, rgba(6,40,92,.98), rgba(0,18,55,.94));
  color:#fff;border-radius:16px;padding:15px 16px;display:flex;gap:12px;align-items:center;
  min-width:260px;box-shadow:0 14px 30px rgba(5,17,44,.22);
}
.service-chip-icon{
  width:46px;height:46px;border-radius:50%;background:#1e8d39;color:#fff;
  display:grid;place-items:center;font-size:18px;flex:0 0 auto
}
.service-chip strong{display:block;font-size:14px}
.service-chip span{display:block;font-size:12px;line-height:1.35;color:#e8eef8}

/* Services */
.services{padding:18px 0 10px;background:#fff}
.service-grid{
  display:grid;grid-template-columns:repeat(6,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line)
}
.service-item{
  text-align:center;padding:22px 16px 24px;border-right:1px solid var(--line)
}
.service-item:last-child{border-right:0}
.service-icon{
  width:68px;height:68px;border-radius:50%;display:grid;place-items:center;margin:0 auto 14px;font-size:30px
}
.service-icon.blue{background:#eaf2fe;color:#255fb8}
.service-icon.green{background:#ebf7ec;color:#14753b}
.service-icon.purple{background:#f1ebfb;color:#7f47b8}
.service-icon.orange{background:#fff3e4;color:#db8315}
.service-icon.rust{background:#fff1ea;color:#dc612f}
.service-item h3{margin:0 0 6px;font-size:17px}
.service-item p{margin:0;color:#394352;font-size:14px;line-height:1.45}

/* How */
.how{padding:18px 0}
.how-card{
  display:grid;grid-template-columns:270px 1fr;gap:20px;
  background:linear-gradient(180deg,#fbfaf7 0%, #f5f5f2 100%);
  border:1px solid #e6e7ea;border-radius:24px;padding:22px;
  box-shadow:0 5px 16px rgba(0,0,0,.04)
}
.mug-card{
  height:100%;min-height:240px;border-radius:18px;
  background:linear-gradient(180deg,#f2ece3 0%, #f6efe6 100%);
  display:flex;align-items:flex-end;justify-content:center;padding:18px;position:relative;overflow:hidden
}
.mug-card::before{
  content:"";position:absolute;left:20px;top:18px;width:110px;height:72px;
  background:linear-gradient(180deg,#3b3b3b,#8e8e8e);border-radius:10px 10px 4px 4px;opacity:.18
}
.mug{
  width:90px;height:110px;background:#fff;border-radius:10px 10px 26px 26px;
  box-shadow:0 6px 16px rgba(0,0,0,.12);display:flex;flex-direction:column;align-items:center;justify-content:center;
  font-size:15px;line-height:1.05;text-align:center;position:relative
}
.mug::after{
  content:"";position:absolute;right:-18px;top:25px;width:24px;height:36px;border:5px solid #fff;border-left:none;border-radius:0 18px 18px 0
}
.mug span{color:var(--green)}
.how-main h2{margin:4px 0 16px;text-align:center;font-size:42px;color:var(--navy);letter-spacing:-1px}
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  align-items:start;
}
.step{
  text-align:center;padding:4px 10px
}
.step-icon{
  width:64px;height:64px;border-radius:50%;margin:0 auto 10px;display:grid;place-items:center;
  background:#eef6ee;color:var(--green);font-size:30px
}
.step h3{font-size:18px;margin:0 0 8px}
.step p{font-size:14px;color:#3f4a58;margin:0;line-height:1.45}
.step-arrow{
  display:none;
}
.how-foot{
  margin-top:18px;display:flex;justify-content:center;gap:34px;flex-wrap:wrap;
  font-size:14px;color:#2d3745;padding-top:14px;border-top:1px solid #e1e2e4
}

/* Benefits */
.benefits{padding:16px 0 14px}
.benefits h2{text-align:center;font-size:42px;letter-spacing:-1px;color:var(--navy);margin:0 0 18px}
.benefit-grid{
  display:grid;grid-template-columns:repeat(6,1fr);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line)
}
.benefit-item{
  text-align:center;padding:20px 15px 24px;border-right:1px solid var(--line)
}
.benefit-item:last-child{border-right:0}
.benefit-icon{font-size:30px;margin-bottom:12px}
.benefit-item h3{margin:0 0 8px;font-size:17px}
.benefit-item p{margin:0;font-size:14px;color:#404a58;line-height:1.42}

/* Panels */
.feature-panels{padding:18px 0 0}
.panel-grid{
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:18px
}
.feature-panel{
  border:1px solid var(--line);border-radius:20px;background:#fff;padding:24px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);position:relative;overflow:hidden
}
.feature-panel h2{
  margin:0 0 10px;font-size:21px;line-height:1.15;color:var(--navy)
}
.feature-panel h2 span{color:var(--green)}
.feature-panel p, .feature-panel li{font-size:14px;color:#2f3846;line-height:1.5}
.feature-panel ul{padding-left:18px;margin:12px 0}
.feature-date{font-size:12px;color:var(--muted);margin-bottom:10px}
blockquote{
  margin:8px 0;font-size:18px;line-height:1.45;font-style:italic;color:#1e2531
}
.verse-ref{font-weight:700;margin-bottom:12px}
.panel-link{
  display:inline-flex;padding:12px 16px;border-radius:12px;margin-top:10px;
  background:var(--green);color:#fff;font-weight:700
}
.insight-panel{
  background:
    linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.96)),
    linear-gradient(135deg,#edf7e8 0%,#ffffff 55%);
}
.insight-panel::after{
  content:"📖";position:absolute;right:18px;bottom:14px;font-size:68px;opacity:.08
}
.talent-panel{
  background:
    linear-gradient(180deg,rgba(255,255,255,.90),rgba(255,255,255,.94)),
    linear-gradient(135deg,#f6eee5 0%,#ffffff 55%);
}
.talent-panel::after{
  content:"🎷";position:absolute;right:18px;bottom:12px;font-size:72px;opacity:.1
}
.manager-box{
  border:1px solid #d7c8b4;background:#fffaf2;border-radius:12px;padding:12px;margin-top:14px;font-size:13px
}
.connect-panel{
  background:
    linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.96)),
    linear-gradient(135deg,#eff7ee 0%,#ffffff 55%);
}
.connect-panel::after{
  content:"💻";position:absolute;right:18px;bottom:14px;font-size:70px;opacity:.08
}
.full-btn{width:100%;margin-top:8px}
.contact-line{margin-top:12px;text-align:center;font-size:16px}
.contact-line strong{font-size:28px;color:var(--navy)}

/* Footer */
.site-footer{
  margin-top:18px;background:linear-gradient(90deg,#062443,#0b1734 60%, #0d5224 100%);color:#fff
}
.footer-grid{
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:24px;padding:28px 22px 20px
}
.footer-brand{display:flex;gap:12px;align-items:flex-start}
.site-footer .name{font-size:18px;font-weight:800}
.site-footer .tagline{font-size:12px;color:#dfe7f0}
.site-footer h3{font-size:15px;margin:0 0 10px}
.site-footer a{display:block;color:#dfe7f0;font-size:13px;margin:6px 0}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.16);
  padding:14px 22px 22px;color:#d2d9e1;font-size:12px
}

/* Responsive */
@media (max-width: 1120px){
  .menu{display:none}
  .hero-grid{grid-template-columns:1fr}
  .hero-copy{padding-top:18px}
  .hero-visual{min-height:520px}
  .hero-photo-card{justify-content:center}
  .service-grid,.benefit-grid{grid-template-columns:repeat(3,1fr)}
  .panel-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 840px){
  .care-card{grid-template-columns:1fr}
  .how-card{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .service-chip{right:14px;bottom:24px;min-width:220px}
}
@media (max-width: 620px){
  .container{padding:0 16px}
  .btn-top{display:none}
  .hero-grid{min-height:auto;padding-top:14px}
  .hero-copy h1{font-size:42px}
  .care-price{font-size:48px}
  .hero-actions{flex-direction:column}
  .btn{width:100%}
  .hero-visual{min-height:420px}
  .hero-photo{max-height:410px}
  .lapel-logo{right:28%;top:56%}
  .service-grid,.benefit-grid,.steps{grid-template-columns:1fr}
  .service-item,.benefit-item{border-right:0;border-bottom:1px solid var(--line)}
  .service-item:last-child,.benefit-item:last-child{border-bottom:0}
  .footer-grid{grid-template-columns:1fr}
  .how-main h2,.benefits h2{font-size:34px}
}

/* Embroidered DT logo: fixed to the jacket pocket, never the face. */
.pocket-embroidery{
  position:absolute;
  right:8%;
  top:65%;
  width:92px;
  height:auto;
  z-index:4;
  pointer-events:none;
  filter:drop-shadow(0 1px 1px rgba(0,0,0,.28));
  opacity:.92;
}
@media (max-width:620px){
  .pocket-embroidery{right:8%;top:65%;width:72px}
}
