/*
Theme Name: 足立恵一税理士事務所
Theme URI: https://adachi-tax.com
Author: C-StoryMaker
Author URI: https://c-storymaker.com
Description: 足立恵一税理士事務所 公式ウェブサイト WordPress テーマ
Version: 1.1.3
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: adachi-tax
*/

/* ===========================
   CSS Custom Properties
=========================== */
:root {
    --amber: #c07d1a;
    --amber-light: #fef3e2;
    --amber-mid: #e8a030;
    --amber-pale: #fdf8f0;
    --border: #e0ddd6;
    --dark: #2c2820;
    --gray: #6b6760;
    --light-gray: #f5f3ef;
    --sans: "Noto Sans JP", sans-serif;
    --serif: "Noto Serif JP", "Georgia", serif;
    --text: #3d3830;
    --white: #ffffff;
}

/* ===========================
   Reset / Base
=========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    color: var(--text);
    font-family: var(--sans);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid rgba(224,221,214,.8);
    display: flex;
    height: 64px;
    justify-content: space-between;
    left: 0;
    padding: 0 56px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.logo {
    align-items: center;
    display: flex;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--gray);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .04em;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--amber);
}

.nav-contact {
    background: var(--amber);
    border: 1px solid var(--amber);
    border-radius: 2px;
    color: #ffffff !important;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .1em;
    padding: 9px 22px;
    text-decoration: none;
    transition: background .25s, color .25s;
}

.nav-contact:hover {
    background: #ffffff !important;
    color: var(--amber) !important;
}

/* ===========================
   HAMBURGER
=========================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: transform .3s, opacity .3s;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   MOBILE NAV DRAWER
=========================== */
.nav-drawer {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    right: 0;
    top: 64px;
    padding: 0;
    position: fixed;
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
    z-index: 99;
}

.nav-drawer.open {
    transform: translateY(0);
}

.nav-drawer a {
    border-bottom: 1px solid var(--border);
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .04em;
    padding: 16px 24px;
    text-decoration: none;
    transition: color .2s, background .2s;
}

.nav-drawer a:hover {
    color: var(--amber);
    background: var(--amber-pale);
}

.nav-drawer .nav-contact-mob {
    background: var(--amber);
    color: #fff !important;
    font-size: 13px;
    letter-spacing: .1em;
    margin: 16px 24px 24px;
    border-radius: 2px;
    text-align: center;
    border-bottom: none;
}

/* ===========================
   FV (First View)
=========================== */
.fv {
    background: var(--amber-pale);
    display: grid;
    grid-template-columns: 33fr 67fr;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    padding-top: 64px;
    position: relative;
}

.fv-left {
    animation: slideInLeft 1s cubic-bezier(.22, 1, .36, 1) both;
    background: var(--amber-pale);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 48px 72px 56px;
    position: relative;
    z-index: 2;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(100%); }
    to   { opacity: 1; transform: translateX(0); }
}

.fv-vertical-text {
    background: var(--amber-pale);
    color: var(--amber-mid);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .2em;
    padding: 12px 4px;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    z-index: 3;
}

.fv-eyebrow {
    align-items: center;
    animation: fadeInUp .8s ease .6s both;
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.fv h1 {
    animation: fadeInUp .8s ease .75s both;
}

.fv-lead {
    animation: fadeInUp .8s ease .9s both;
}

.fv-btns {
    animation: fadeInUp .8s ease 1.05s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fv-eyebrow-line {
    background: var(--amber-mid);
    height: 1px;
    width: 28px;
}

.fv-eyebrow span {
    color: var(--amber);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .18em;
}

.fv h1 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.fv h1 em {
    color: var(--amber);
    display: block;
    font-size: 32px;
    font-style: normal;
}

.fv-lead {
    border-left: 2px solid var(--amber-mid);
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 2.2;
    margin-bottom: 36px;
    padding-left: 16px;
}

.fv-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-main {
    background: var(--amber);
    border: 1px solid var(--amber);
    border-radius: 2px;
    color: #ffffff;
    display: inline-block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .08em;
    padding: 13px 28px;
    text-decoration: none;
    transition: background .25s, color .25s, border-color .25s;
}

.btn-main:hover {
    background: #ffffff;
    color: var(--amber);
}

.btn-sub {
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--gray);
    display: inline-block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .08em;
    padding: 13px 28px;
    text-decoration: none;
    transition: background .25s, color .25s, border-color .25s;
}

.btn-sub:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: #ffffff;
}

.fv-right {
    animation: fadeInRight 1.4s cubic-bezier(.22, 1, .36, 1) .3s both;
    overflow: hidden;
    position: relative;
}

@keyframes fadeInRight {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fv-bg-img {
    background-image: url("https://img.adachi-office.com/FV.jpg");
    background-position: center top;
    background-size: cover;
    inset: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: fv-slow-pan 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes fv-slow-pan {
    from { transform: scale(1.08) translateX(0)    translateY(0); }
    to   { transform: scale(1.08) translateX(-2%) translateY(-2%); }
}

@media (prefers-reduced-motion: reduce) {
    .fv-bg-img {
        animation: none;
        transform: scale(1.08);
    }
}

.fv-right-overlay {
    background: linear-gradient(to right, rgba(253,248,240,.15) 0%, transparent 30%);
    inset: 0;
    position: absolute;
}

.fv-scroll {
    align-items: center;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    right: 28px;
    z-index: 3;
}

.fv-scroll span {
    color: rgba(255,255,255,.7);
    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: .18em;
    text-shadow: 0 1px 3px rgba(0,0,0,.3);
    writing-mode: vertical-rl;
}

.fv-scroll-line {
    background: rgba(255,255,255,.5);
    height: 36px;
    width: 1px;
}

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    display: flex;
    padding: 0 80px;
}

.trust-item {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 14px;
    padding: 22px 24px;
}

.trust-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.trust-icon {
    align-items: center;
    background: var(--amber-light);
    border: 1px solid var(--amber-mid);
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.trust-txt-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-label {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
}

.trust-desc {
    color: var(--gray);
    font-size: 11px;
    font-weight: 300;
}

/* ===========================
   SECTIONS
=========================== */
.sec {
    background: #ffffff;
    padding: 88px 80px;
}

.sec-warm {
    background: var(--amber-pale);
    padding: 88px 80px;
}

.sec-light {
    background-image: url("https://img.adachi-office.com/service_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 88px 80px;
}

.sec-label {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 52px;
}

.sec-label-line {
    background: var(--amber-mid);
    height: 1px;
    width: 36px;
}

.sec-label span {
    color: var(--amber);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .2em;
}

.sec-label-num {
    display: none;
}

.sec-label--padded-lg { padding: 64px 80px 0; }
.sec-label--padded-sm { padding: 56px 80px 0; }

/* ===========================
   POLICY
=========================== */
.policy-wrap {
    align-items: start;
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 2fr;
}

.policy-heading {
    position: sticky;
    top: 80px;
}

.policy-heading h2 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 1.7;
    margin-bottom: 18px;
}

.policy-heading p {
    color: var(--gray);
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
}

.policy-items {
    display: flex;
    flex-direction: column;
}

.policy-item {
    align-items: start;
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 24px;
    grid-template-columns: 72px 1fr;
    padding: 36px 0;
}

.policy-item:first-child {
    border-top: 1px solid var(--border);
}

.policy-item-num {
    color: var(--amber-light);
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
    padding-top: 4px;
    position: relative;
}

.policy-item-num::after {
    display: none;
}

.policy-item h3 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.policy-item p {
    color: var(--gray);
    font-size: 13px;
    font-weight: 300;
    line-height: 2.1;
}

/* ===========================
   SERVICES & PRICING
=========================== */
.svcs-pricing-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.svcs-pricing-grid h3 {
    margin: 18px 0;
}

.svc-price-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    padding: 36px 28px;
    position: relative;
    text-align: center;
}

.svc-price-accent {
    background: linear-gradient(to right, var(--amber), var(--amber-mid));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.svc-price-divider {
    background: var(--border);
    height: 1px;
    margin: 20px 0 16px;
}

.svc-price-label {
    color: var(--amber);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .16em;
    margin-bottom: 8px;
}

.svc-icon {
    align-items: center;
    background: var(--amber-light);
    border: 1px solid var(--amber-mid);
    border-radius: 50%;
    display: flex;
    height: 72px;
    justify-content: center;
    margin: 0 auto;
    width: 72px;
}

.svc-price-card h3 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.svc-price-card p {
    color: var(--gray);
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
}

/* ===========================
   ABOUT
=========================== */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.about-img-area {
    background-image: url('https://img.adachi-office.com/adachi.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--amber-pale);
    min-height: 600px;
    position: relative;
}

.about-vertical-accent {
    color: rgba(192,125,26,.3);
    font-family: var(--serif);
    font-size: 10px;
    left: 20px;
    letter-spacing: .2em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
}

.about-content {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 64px;
}

.about-content h2 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 1.4;
    margin-bottom: 6px;
}

.about-sub {
    color: var(--amber);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .1em;
    margin-bottom: 26px;
}

.about-content p {
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
    line-height: 2.2;
    margin-bottom: 14px;
}

.about-meta-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
}

.about-meta-item {
    background: var(--amber-pale);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 16px;
}

.about-meta-k {
    color: var(--amber);
    font-size: 10px;
    letter-spacing: .1em;
    margin-bottom: 4px;
}

.about-meta-v {
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.about-tag {
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--gray);
    font-size: 11px;
    letter-spacing: .04em;
    padding: 4px 12px;
}

/* ===========================
   POLICY PREVIEW
=========================== */
.policy-preview-grid {
    display: grid;
    gap: 0;
    grid-template-columns: 5fr 7fr;
    min-height: 360px;
}

.policy-preview-left {
    background-image: url("https://img.adachi-office.com/policy_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 64px;
}

.policy-preview-left h2 {
    color: #ffffff;
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 1.7;
    margin-bottom: 14px;
}

.policy-preview-left p {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 300;
    line-height: 2.1;
    margin-bottom: 28px;
}

.btn-outline-white {
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 2px;
    color: #ffffff;
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .1em;
    padding: 10px 24px;
    text-decoration: none;
    transition: background .25s, color .25s;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #6b5240;
}

.policy-preview-right {
    background: var(--amber-pale);
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
    padding: 72px 64px;
}

.policy-point {
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
}

.policy-point:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-point-num {
    color: var(--amber-mid);
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    width: 36px;
}

.policy-point h4 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .04em;
    margin-bottom: 5px;
}

.policy-point p {
    color: var(--gray);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
}

/* ===========================
   BLOG PREVIEW
=========================== */
.blog-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    padding: 28px;
    transition: box-shadow .2s, transform .2s;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.blog-date {
    color: var(--amber);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .1em;
    margin-bottom: 10px;
}

.blog-tag {
    border: 1px solid var(--amber-mid);
    border-radius: 2px;
    color: var(--amber);
    display: inline-block;
    font-size: 10px;
    letter-spacing: .06em;
    margin-bottom: 12px;
    padding: 2px 8px;
}

.blog-card h4 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1.7;
}

/* ===========================
   FLOW
=========================== */
.flow-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.flow-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    padding: 36px 24px;
    position: relative;
    text-align: center;
}

.flow-card-accent {
    background: linear-gradient(to bottom, var(--amber), var(--amber-mid));
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 3px;
}

.flow-num-badge {
    display: none;
}

.flow-step-num {
    color: var(--amber-light);
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 8px;
}

.flow-illust {
    align-items: center;
    display: flex;
    height: 160px;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
}

.flow-card h4 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .04em;
    margin-bottom: 8px;
}

.flow-card p {
    color: var(--gray);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.9;
}

/* ===========================
   CTA
=========================== */
.cta-section {
    align-items: center;
    background: var(--amber-pale);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 72px 80px;
    overflow: hidden;
}

.cta-illust {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    height: 200px;
}

.cta-illust img {
    height: 200px;
    width: auto;
    display: block;
}

.cta-text h2 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cta-text p {
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
}

.btn-cta {
    background: var(--amber);
    border: 1px solid #ffffff;
    border-radius: 2px;
    color: #ffffff;
    display: inline-block;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .1em;
    padding: 16px 36px;
    text-decoration: none;
    transition: background .25s, color .25s;
    white-space: nowrap;
}

.btn-cta:hover {
    background: #ffffff;
    color: var(--amber);
}

/* ===========================
   BUTTONS (shared)
=========================== */
.btn-outline-amber {
    border: 1px solid var(--amber);
    border-radius: 2px;
    color: var(--amber);
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .1em;
    margin-top: 12px;
    padding: 10px 24px;
    text-decoration: none;
    transition: background .25s, color .25s;
}

.btn-outline-amber:hover {
    background: var(--amber);
    color: #ffffff;
}

.pricing-note {
    border-bottom: 1px solid transparent;
    color: var(--amber);
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .06em;
    margin-top: 12px;
    text-decoration: none;
    transition: border-color .2s;
}

.pricing-note:hover {
    border-bottom-color: var(--amber);
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: #2a2620;
    padding: 60px 80px 0;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: grid;
    gap: 48px;
    grid-template-columns: 2fr repeat(4, 1fr);
    padding-bottom: 48px;
}

.f-logo {
    color: rgba(255,255,255,.75);
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .06em;
    margin-bottom: 14px;
}

.f-logo em {
    color: var(--amber-mid);
    font-style: normal;
}

.footer-brand p {
    color: rgba(255,255,255,.35);
    font-size: 12px;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 18px;
}

.f-addr {
    border-left: 2px solid var(--amber);
    color: rgba(255,255,255,.3);
    font-size: 11px;
    line-height: 2;
    padding-left: 12px;
}

.footer-col h4 {
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.45);
    font-size: 10px;
    letter-spacing: .16em;
    margin-bottom: 18px;
    padding-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,.35);
    display: block;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--amber-mid);
}

.footer-bottom {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-copy {
    color: rgba(255,255,255,.2);
    font-size: 11px;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,.2);
    font-size: 11px;
    text-decoration: none;
}

/* ===========================
   SECTION HEADING ROW
=========================== */
.sec-heading-row {
    margin-bottom: 44px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sec-heading-row h2 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: 0.04em;
}

/* ===========================
   RESPONSIVE — TABLET (768px)
=========================== */
@media (max-width: 768px) {

    /* navbar */
    .navbar { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* FV */
    .fv {
        grid-template-columns: 1fr;
        grid-template-rows: auto 40vw;
        height: auto;
        min-height: unset;
    }
    .fv-left {
        padding: 48px 28px 40px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .fv-vertical-text { display: none; }
    .fv h1 { font-size: 28px; }
    .fv h1 em { font-size: 24px; }
    .fv-lead { font-size: 13px; }
    .fv-right { min-height: 40vw; }
    .fv-scroll { display: none; }

    /* trust bar */
    .trust-bar {
        flex-wrap: wrap;
        padding: 0 24px;
    }
    .trust-item {
        flex: 1 1 50%;
        padding: 16px 12px;
    }
    .trust-item:not(:last-child) { border-right: none; }
    .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }

    /* sections */
    .sec, .sec-warm, .sec-light { padding: 56px 24px; }
    .sec-label--padded-lg { padding: 40px 24px 0; }
    .sec-label--padded-sm { padding: 32px 24px 0; }

    /* policy */
    .policy-wrap { grid-template-columns: 1fr; gap: 32px; }
    .policy-heading { position: static; }
    .policy-heading h2 { font-size: 26px; }

    /* services grid */
    .svcs-pricing-grid { grid-template-columns: 1fr; }

    /* about */
    .about-wrap { grid-template-columns: 1fr; }
    .about-img-area { min-height: 240px; }
    .about-content { padding: 40px 24px; }
    .about-content h2 { font-size: 28px; }
    .about-meta-grid { grid-template-columns: 1fr; }

    /* policy preview */
    .policy-preview-grid { grid-template-columns: 1fr; }
    .policy-preview-left { padding: 48px 24px; }
    .policy-preview-left h2 { font-size: 24px; }
    .policy-preview-right { padding: 40px 24px; }

    /* blog grid */
    .blog-grid { grid-template-columns: 1fr; }

    /* flow grid */
    .flow-grid { grid-template-columns: 1fr 1fr; }
    .flow-illust { height: 100px; }
    .flow-step-num { font-size: 48px; }

    /* CTA */
    .cta-section {
        flex-direction: column;
        gap: 0;
        padding: 48px 24px;
        text-align: center;
    }
    .cta-text { order: 1; margin-bottom: 24px; }
    .cta-illust { order: 2; height: 180px; margin-bottom: 24px; }
    .cta-illust img { height: 180px; }
    .cta-section .btn-cta { order: 3; width: 100%; display: block; }

    /* footer */
    .footer { padding: 48px 24px 0; }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }

    /* section heading row */
    .sec-heading-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ===========================
   INNER PAGES — COMMON
=========================== */

html { scroll-behavior: smooth; }

/* Page Hero */
.page-hero {
    background: var(--amber-pale);
    background-size: cover;
    background-position: center;
    padding: 120px 80px 72px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,248,235,0.92);
    z-index: 1;
    pointer-events: none;
}
.page-hero > * { position: relative; z-index: 3; }
.page-hero::before {
    content: attr(data-watermark);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'GFS Didot', var(--serif);
    font-size: 120px;
    font-weight: 300;
    color: rgba(192,125,26,.10);
    letter-spacing: .1em;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
}
.hero-eyebrow {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    animation: fadeUp .8s ease .2s both;
}
.hero-line { background: var(--amber-mid); height: 1px; width: 28px; }
.hero-eyebrow span { color: var(--amber); font-size: 10px; font-weight: 300; letter-spacing: .2em; }
.page-hero h1 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.6;
    margin-bottom: 12px;
    animation: fadeUp .8s ease .4s both;
}
.page-hero-lead {
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    animation: fadeUp .8s ease .6s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sec-label { align-items: center; display: flex; gap: 12px; margin-bottom: 48px; }
.sec-label-line { background: var(--amber-mid); height: 1px; width: 32px; }
.sec-label span { color: var(--amber); font-size: 10px; font-weight: 300; letter-spacing: .28em; }

/* CTA Banner (inner pages) */
.cta-banner {
    align-items: center;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    padding: 56px 80px;
}
.cta-banner h2 {
    color: var(--dark);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 1.7;
    margin-bottom: 8px;
}
.cta-banner p { color: var(--gray); font-size: 14px; font-weight: 300; line-height: 2; }
.btn-cta {
    background: var(--amber);
    border: 1px solid #fff;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .1em;
    padding: 16px 36px;
    text-decoration: none;
    transition: background .25s, color .25s;
    white-space: nowrap;
}
.btn-cta:hover { background: var(--amber-pale); color: var(--amber); }

/* ===========================
   ABOUT PAGE
=========================== */

.scroll-target { scroll-margin-top: 120px; }

.page-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 0;
    padding: 0 80px;
    position: sticky;
    top: 64px;
    z-index: 9;
    overflow-x: auto;
}
.page-nav a {
    border-bottom: 2px solid transparent;
    color: var(--gray);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .04em;
    padding: 16px 24px;
    text-decoration: none;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.page-nav a:hover,
.page-nav a.active { color: var(--amber); border-bottom-color: var(--amber); }

/* Profile */
.profile-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 600px;
}
.profile-img-area { position: relative; overflow: hidden; }
.profile-img-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(192,125,26,.04) 39px, rgba(192,125,26,.04) 40px);
}
.profile-vertical {
    color: rgba(192,125,26,.35);
    font-family: var(--serif);
    font-size: 10px;
    left: 20px;
    letter-spacing: .2em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    z-index: 2;
}
.profile-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 560px;
    background-color: #d4cdc3;
    background-size: cover;
    background-position: center top;
    display: block;
}
.profile-content { padding: 72px 64px; }
.profile-name { color: var(--dark); font-family: var(--serif); font-size: 38px; font-weight: 300; letter-spacing: .04em; margin-bottom: 6px; }
.profile-title { color: var(--amber); font-size: 12px; letter-spacing: .12em; margin-bottom: 32px; }
.profile-bio { color: var(--gray); font-size: 14px; font-weight: 300; line-height: 2.3; margin-bottom: 40px; }
.profile-bio p { margin-bottom: 18px; }
.profile-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.profile-table tr { border-bottom: 1px solid var(--border); }
.profile-table th { color: var(--amber); font-size: 11px; font-weight: 400; letter-spacing: .1em; padding: 14px 0; text-align: left; width: 120px; vertical-align: top; }
.profile-table td { color: var(--text); font-size: 13px; font-weight: 300; padding: 14px 0 14px 16px; line-height: 1.8; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-tag { border: 1px solid var(--border); border-radius: 2px; color: var(--gray); font-size: 11px; letter-spacing: .04em; padding: 5px 14px; }

/* Career */
.career-section { background: var(--amber-pale); padding: 88px 80px; }
.career-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.career-heading { position: sticky; top: 128px; }
.career-heading h2 { color: var(--dark); font-family: var(--serif); font-size: 30px; font-weight: 300; letter-spacing: .04em; line-height: 1.7; margin-bottom: 16px; }
.career-heading p { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 2; }
.career-timeline { position: relative; }
.career-timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.career-item { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); position: relative; }
.career-item:first-child { padding-top: 0; }
.career-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--amber-light); border: 2px solid var(--amber-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; margin-top: 2px; }
.career-dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.career-year { color: var(--amber); font-size: 11px; font-weight: 400; letter-spacing: .12em; margin-bottom: 6px; }
.career-role { color: var(--dark); font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: .04em; margin-bottom: 8px; }
.career-desc { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 2; }

/* Policy section (about page) */
.policy-section-wrap { padding: 88px 80px; border-bottom: 1px solid var(--border); }
.policy-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 64px; }
.policy-intro h2 { color: var(--dark); font-family: var(--serif); font-size: 30px; font-weight: 300; letter-spacing: .04em; line-height: 1.7; margin-bottom: 16px; }
.policy-intro p { color: var(--gray); font-size: 14px; font-weight: 300; line-height: 2.3; }
.policy-quote { background: var(--amber-pale); border-left: 3px solid var(--amber); border-radius: 0 4px 4px 0; padding: 28px 32px; }
.policy-quote-text { color: var(--dark); font-family: var(--serif); font-size: 17px; font-weight: 300; letter-spacing: .04em; line-height: 1.9; margin-bottom: 12px; }
.policy-quote-author { color: var(--amber); font-size: 11px; letter-spacing: .12em; }
.policy-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.policy-item-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; position: relative; }
.policy-item-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--amber), var(--amber-mid)); }
.policy-item-card-body { padding: 36px 28px; }
.policy-item-num { color: rgba(192,125,26,.18); font-family: var(--serif); font-size: 56px; font-weight: 300; line-height: 1; margin-bottom: 12px; }
.policy-item-card h3 { color: var(--dark); font-family: var(--serif); font-size: 19px; font-weight: 400; letter-spacing: .04em; margin-bottom: 12px; }
.policy-item-card p { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 2.1; }

/* Strength */
.strength-section {
    background-color: var(--amber-pale);
    background-size: cover;
    background-position: center;
    padding: 88px 80px;
    position: relative;
}
.strength-section::before { content: ''; position: absolute; inset: 0; background: rgba(253,248,240,.88); pointer-events: none; }
.strength-section > * { position: relative; z-index: 1; }
.strength-section h2 { color: var(--dark); font-family: var(--serif); font-size: 30px; font-weight: 300; letter-spacing: .04em; margin-bottom: 48px; }
.strength-grid { display: flex; flex-direction: column; gap: 16px; }
.strength-card { background: rgba(255,255,255,.75); border: 1px solid var(--border); border-radius: 4px; display: grid; grid-template-columns: 80px 1fr; gap: 0; overflow: hidden; }
.strength-card-num { align-items: center; background: rgba(253,248,240,.8); border-right: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; padding: 28px 0; }
.strength-card-num span { color: var(--amber-mid); font-family: var(--serif); font-size: 32px; font-weight: 300; line-height: 1; }
.strength-card-body { padding: 28px; }
.strength-card h3 { color: var(--dark); font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: .04em; margin-bottom: 10px; }
.strength-card p { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 2.1; }

/* ===========================
   SERVICES PAGE
=========================== */

.service-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 80px;
    display: flex;
    gap: 0;
    position: sticky;
    top: 64px;
    z-index: 9;
    overflow-x: auto;
}
.service-nav a {
    color: var(--gray);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .04em;
    padding: 18px 24px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.service-nav a:hover,
.service-nav a.active { color: var(--amber); border-bottom-color: var(--amber); }

.service-section {
    padding: 88px 80px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 120px;
}
.service-section:nth-child(even) { background: var(--amber-pale); }

.service-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.service-grid.reverse { grid-template-columns: 2fr 1fr; }
.service-grid.reverse .service-info { order: 2; }
.service-grid.reverse .service-visual { order: 1; }

.service-image { border-radius: 4px; overflow: hidden; margin-bottom: 28px; background: var(--amber-pale); border: 1px solid var(--border); height: 220px; background-size: cover; background-position: center; }
.service-subtitle { color: var(--amber); font-size: 11px; letter-spacing: .14em; margin-bottom: 24px; }
.service-info h2 { color: var(--dark); font-family: var(--serif); font-size: 30px; font-weight: 300; letter-spacing: .04em; line-height: 1.6; margin-bottom: 16px; }
.service-info p { color: var(--gray); font-size: 14px; font-weight: 300; line-height: 2.2; margin-bottom: 20px; }
.service-btn { display: inline-block; border: 1px solid var(--amber); border-radius: 2px; color: var(--amber); font-size: 12px; letter-spacing: .1em; padding: 10px 24px; text-decoration: none; transition: background .25s, color .25s; }
.service-btn:hover { background: var(--amber); color: #fff; }

.service-detail { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.service-detail-header { background: var(--amber-pale); border-bottom: 1px solid var(--border); padding: 24px 32px; }
.service-detail-header h3 { color: var(--dark); font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: .04em; }
.service-detail-body { padding: 32px; }
.service-list { list-style: none; }
.service-list li { align-items: flex-start; display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.service-list li:last-child { border-bottom: none; }
.service-list-check { color: var(--amber); flex-shrink: 0; font-size: 14px; margin-top: 1px; }
.service-list-text strong { color: var(--dark); display: block; font-size: 14px; font-weight: 400; margin-bottom: 4px; }
.service-list-text span { color: var(--gray); font-size: 12px; font-weight: 300; line-height: 1.8; }

.flow-section {
    background: var(--amber-pale);
    padding: 88px 80px;
    scroll-margin-top: 120px;
}
.flow-section h2 { color: var(--dark); font-family: var(--serif); font-size: 30px; font-weight: 300; letter-spacing: .04em; margin-bottom: 44px; }

/* ===========================
   BLOG / HOME
=========================== */

.blog-container {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    padding: 72px 80px;
    align-items: start;
}
.blog-main { min-width: 0; }

.category-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.cat-btn { border: 1px solid var(--border); border-radius: 2px; color: var(--gray); font-size: 12px; font-weight: 300; letter-spacing: .06em; padding: 7px 16px; transition: all .2s; background: #fff; text-decoration: none; display: inline-block; }
.cat-btn:hover,
.cat-btn.active { background: var(--amber); border-color: var(--amber); color: #fff; }

.featured-post { background: var(--amber-pale); border: 1px solid var(--border); border-radius: 4px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 40px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .25s, border-color .25s; }
.featured-post:hover { border-color: var(--amber); box-shadow: 0 4px 20px rgba(192,125,26,.12); }
.featured-img { background-size: cover; background-position: center; min-height: 240px; background-color: #d4cdc3; }
.featured-content { padding: 40px; }
.featured-label { color: var(--amber); font-size: 10px; letter-spacing: .16em; margin-bottom: 10px; }
.featured-content h2 { color: var(--dark); font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: .04em; line-height: 1.7; margin-bottom: 12px; }
.featured-meta { color: var(--gray); font-size: 12px; font-weight: 300; margin-bottom: 16px; }
.featured-excerpt { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 2; margin-bottom: 24px; }
.blog-read-more { color: var(--amber); font-size: 12px; letter-spacing: .08em; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.blog-read-more:hover { border-bottom-color: var(--amber); }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; transition: box-shadow .2s, transform .2s; overflow: hidden; text-decoration: none; display: block; }
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.blog-card-img { height: 160px; background-size: cover; background-position: center; background-color: #d4cdc3; }
.blog-card-body { padding: 24px; }
.blog-meta { align-items: center; display: flex; gap: 10px; margin-bottom: 10px; }
.blog-date { color: var(--amber); font-size: 11px; letter-spacing: .1em; }
.blog-tag { border: 1px solid var(--amber-mid); border-radius: 2px; color: var(--amber); font-size: 10px; letter-spacing: .06em; padding: 2px 8px; }
.blog-card h4 { color: var(--dark); font-family: var(--serif); font-size: 15px; font-weight: 400; letter-spacing: .03em; line-height: 1.7; margin-bottom: 10px; }
.blog-card p { color: var(--gray); font-size: 12px; font-weight: 300; line-height: 1.9; }

.pagination { align-items: center; display: flex; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers { align-items: center; border: 1px solid var(--border); border-radius: 2px; color: var(--gray); display: flex; font-size: 13px; height: 36px; justify-content: center; text-decoration: none; transition: all .2s; min-width: 36px; padding: 0 8px; }
.pagination .page-numbers:hover,
.pagination .current { background: var(--amber); border-color: var(--amber); color: #fff; }
.pagination .prev,
.pagination .next { padding: 0 16px; font-size: 12px; }

.blog-sidebar { position: sticky; top: 88px; }
.sidebar-widget { background: #fff; border: 1px solid var(--border); border-radius: 4px; margin-bottom: 24px; overflow: hidden; }
.sidebar-widget-header { background: var(--amber-pale); border-bottom: 1px solid var(--border); padding: 16px 20px; }
.sidebar-widget-header h3 { color: var(--dark); font-family: var(--serif); font-size: 14px; font-weight: 400; letter-spacing: .04em; }
.sidebar-widget-body { padding: 20px; }
.sidebar-cat-list { list-style: none; }
.sidebar-cat-list li { border-bottom: 1px solid var(--border); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a { align-items: center; color: var(--gray); display: flex; font-size: 13px; font-weight: 300; justify-content: space-between; padding: 10px 0; text-decoration: none; transition: color .2s; }
.sidebar-cat-list a:hover { color: var(--amber); }
.sidebar-cat-count { background: var(--amber-light); border-radius: 10px; color: var(--amber); font-size: 11px; padding: 2px 8px; }
.sidebar-recent-post { border-bottom: 1px solid var(--border); padding: 12px 0; }
.sidebar-recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-recent-date { color: var(--amber); font-size: 11px; letter-spacing: .1em; margin-bottom: 4px; }
.sidebar-recent-title a { color: var(--dark); font-size: 13px; font-weight: 300; line-height: 1.7; text-decoration: none; }
.sidebar-recent-title a:hover { color: var(--amber); }
.sidebar-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag a { border: 1px solid var(--border); border-radius: 2px; color: var(--gray); font-size: 11px; letter-spacing: .04em; padding: 4px 12px; transition: all .2s; text-decoration: none; display: inline-block; }
.sidebar-tag a:hover { border-color: var(--amber); color: var(--amber); }

/* Single Post */
.single-container { max-width: 800px; margin: 0 auto; padding: 72px 80px 96px; }
.single-meta { align-items: center; display: flex; gap: 12px; margin-bottom: 40px; }
.single-body { color: var(--gray); font-size: 15px; font-weight: 300; line-height: 2.4; }
.single-body h2 { color: var(--dark); font-family: var(--serif); font-size: 22px; font-weight: 400; margin: 48px 0 20px; }
.single-body h3 { color: var(--dark); font-family: var(--serif); font-size: 18px; font-weight: 400; margin: 36px 0 16px; }
.single-body p { margin-bottom: 24px; }
.single-body ul, .single-body ol { margin: 0 0 24px 24px; }
.single-body li { margin-bottom: 8px; line-height: 2; }
.single-body img { max-width: 100%; height: auto; border-radius: 4px; margin: 24px 0; }
.single-body blockquote { border-left: 3px solid var(--amber); padding: 16px 24px; background: var(--amber-pale); margin: 24px 0; }
.single-nav { border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 24px; margin-top: 64px; padding-top: 40px; }
.single-nav a { color: var(--amber); font-size: 13px; font-weight: 300; letter-spacing: .06em; text-decoration: none; }
.single-nav a:hover { text-decoration: underline; }
.back-to-blog { display: inline-block; border: 1px solid var(--amber); border-radius: 2px; color: var(--amber); font-size: 13px; letter-spacing: .08em; margin-top: 48px; padding: 10px 24px; text-decoration: none; transition: background .25s, color .25s; }
.back-to-blog:hover { background: var(--amber); color: #fff; }

/* ===========================
   CONTACT PAGE
=========================== */

.contact-info-strip {
    background: var(--dark);
    padding: 0 80px;
    display: flex;
    gap: 0;
}
.contact-info-item {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 14px;
    padding: 24px 0;
    border-right: 1px solid rgba(255,255,255,.08);
}
.contact-info-item:last-child { border-right: none; padding-left: 32px; }
.contact-info-icon {
    align-items: center;
    background: rgba(192,125,26,.2);
    border: 1px solid rgba(192,125,26,.4);
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 40px;
    justify-content: center;
    width: 40px;
}
.contact-info-label { color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .14em; margin-bottom: 4px; }
.contact-info-value { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 300; }

.contact-container { padding: 80px 24px 96px; max-width: 680px; margin: 0 auto; }
.contact-form-wrap h2 { color: var(--dark); font-family: var(--serif); font-size: 28px; font-weight: 300; letter-spacing: .04em; line-height: 1.7; margin-bottom: 8px; }
.contact-form-sub { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 2; margin-bottom: 40px; }

.form-group { margin-bottom: 28px; }
.form-label { align-items: center; color: var(--dark); display: flex; font-size: 13px; font-weight: 400; gap: 8px; letter-spacing: .04em; margin-bottom: 8px; }
.form-required { background: var(--amber); border-radius: 2px; color: #fff; font-size: 10px; letter-spacing: .06em; padding: 2px 6px; }
.form-optional { background: var(--border); border-radius: 2px; color: var(--gray); font-size: 10px; letter-spacing: .06em; padding: 2px 6px; }
.form-input,
.form-textarea {
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    padding: 12px 16px;
    transition: border-color .2s;
    width: 100%;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--amber); }
.form-textarea { height: 160px; resize: vertical; }
.form-hint { color: var(--gray); font-size: 12px; font-weight: 300; margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-item {
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    transition: border-color .2s, background .2s;
}
.check-item:has(input:checked) { background: var(--amber-light); border-color: var(--amber-mid); }
.check-item input { accent-color: var(--amber); flex-shrink: 0; height: 16px; width: 16px; }
.check-item span { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 1.5; }
.check-item:has(input:checked) span { color: var(--dark); }

.privacy-check { align-items: flex-start; display: flex; gap: 12px; margin-bottom: 32px; }
.privacy-check input { accent-color: var(--amber); flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; }
.privacy-check label { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 1.9; }
.privacy-check a { color: var(--amber); }

.btn-submit {
    background: var(--amber);
    border: none;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .12em;
    padding: 16px 48px;
    transition: background .25s;
    width: 100%;
}
.btn-submit:hover { background: #a86b14; }

/* CF7 カスタマイズ */
.wpcf7-form .form-group { margin-bottom: 28px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea { width: 100%; }

/* ===========================
   PRICING PAGE
=========================== */

.pricing-note-bar { background: var(--amber-light); border-bottom: 1px solid var(--amber-mid); padding: 16px 80px; }
.pricing-note-bar p { color: var(--dark); font-size: 13px; font-weight: 300; }
.pricing-note-bar strong { color: var(--amber); font-weight: 500; }

.pricing-section { padding: 88px 80px; border-bottom: 1px solid var(--border); }
.pricing-section:nth-child(even) { background: var(--amber-pale); }
.pricing-section h3 { color: var(--dark); font-family: var(--serif); font-size: 20px; font-weight: 300; letter-spacing: .04em; margin-bottom: 8px; }
.pricing-section > p { color: var(--gray); font-size: 13px; font-weight: 300; margin-bottom: 20px; }

.pricing-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead tr { background: var(--amber-pale); }
.pricing-table th { color: var(--dark); font-family: var(--serif); font-size: 13px; font-weight: 400; letter-spacing: .04em; padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--border); }
.pricing-table th:not(:first-child) { text-align: center; }
.pricing-table td { padding: 18px 24px; font-size: 13px; font-weight: 300; color: var(--gray); border-bottom: 1px solid var(--border); vertical-align: middle; }
.pricing-table td:not(:first-child) { text-align: center; color: var(--dark); font-weight: 400; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(253,248,240,.5); }
.price-note { color: var(--gray); font-size: 11px; font-weight: 300; margin-top: 4px; display: block; }
.price-highlight { color: var(--amber); font-weight: 500; }
.price-inquiry { color: var(--amber); font-size: 13px; }
.price-inquiry br { display: none; }
.pricing-caption { color: var(--gray); font-size: 12px; font-weight: 300; line-height: 1.9; margin-top: 16px; padding-left: 4px; }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; position: relative; }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--amber), var(--amber-mid)); }
.price-card-header { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.price-card-label { color: var(--amber); font-size: 10px; font-weight: 300; letter-spacing: .16em; margin-bottom: 8px; }
.price-card-name { color: var(--dark); font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: .04em; margin-bottom: 10px; }
.price-card-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { color: var(--gray); font-size: 11px; font-weight: 300; }
.price-amount { color: var(--amber); font-family: var(--serif); font-size: 28px; font-weight: 300; }
.price-unit { color: var(--gray); font-size: 12px; font-weight: 300; }
.price-card-body { padding: 24px 28px; }
.price-card-desc { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 2; }

.faq-section {
    padding: 88px 80px;
    background-color: var(--amber-pale);
    background-size: cover;
    background-position: center;
    position: relative;
}
.faq-section::before { content: ''; position: absolute; inset: 0; background: rgba(253,248,240,.91); pointer-events: none; }
.faq-section > * { position: relative; z-index: 1; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { align-items: center; cursor: pointer; display: flex; gap: 16px; justify-content: space-between; padding: 24px 0; }
.faq-q-text { color: var(--dark); font-family: var(--serif); font-size: 16px; font-weight: 400; letter-spacing: .04em; }
.faq-q-prefix { color: var(--amber); font-family: var(--serif); font-size: 20px; font-weight: 300; flex-shrink: 0; }
.faq-icon { color: var(--amber); font-size: 18px; flex-shrink: 0; transition: transform .25s; }
.faq-a { color: var(--gray); font-size: 14px; font-weight: 300; line-height: 2.2; padding: 0 0 24px 36px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===========================
   PRIVACY PAGE
=========================== */

.content-container {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 72px;
    padding: 72px 80px 96px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.content-container aside { position: sticky; top: 88px; align-self: start; }

.toc { background: var(--amber-pale); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.toc-header { background: var(--dark); padding: 16px 20px; }
.toc-header h3 { color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 13px; font-weight: 300; letter-spacing: .1em; }
.toc-body { padding: 16px 0; }
.toc-item a { color: var(--gray); display: block; font-size: 12px; font-weight: 300; letter-spacing: .03em; line-height: 1.5; padding: 8px 20px; text-decoration: none; transition: color .2s, background .2s; border-left: 2px solid transparent; }
.toc-item a:hover,
.toc-item a.active { color: var(--amber); background: rgba(192,125,26,.05); border-left-color: var(--amber); }
.toc-updated { border-top: 1px solid var(--border); color: var(--gray); font-size: 11px; font-weight: 300; padding: 14px 20px; }

.policy-body { min-width: 0; }
.effective-badge { align-items: center; background: var(--amber-light); border: 1px solid var(--amber-mid); border-radius: 4px; display: flex; gap: 12px; margin-bottom: 48px; padding: 16px 20px; }
.effective-badge-icon { color: var(--amber); font-size: 18px; flex-shrink: 0; }
.effective-badge p { color: var(--dark); font-size: 13px; font-weight: 300; line-height: 1.8; }
.effective-badge strong { color: var(--amber); font-weight: 500; }

.policy-page-section { margin-bottom: 56px; scroll-margin-top: 120px; }
.policy-page-section:last-of-type { margin-bottom: 0; }
.section-header { align-items: center; border-bottom: 1px solid var(--border); display: flex; gap: 16px; margin-bottom: 28px; padding-bottom: 16px; }
.section-num { align-items: center; background: var(--amber); border-radius: 2px; color: #fff; display: flex; flex-shrink: 0; font-family: var(--serif); font-size: 13px; font-weight: 300; height: 28px; justify-content: center; width: 28px; }
.policy-page-section h2 { color: var(--dark); font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: .04em; }

.policy-text { color: var(--gray); font-size: 14px; font-weight: 300; line-height: 2.4; margin-bottom: 20px; }
.policy-text:last-child { margin-bottom: 0; }

.policy-list { list-style: none; margin-bottom: 20px; }
.policy-list li { align-items: flex-start; color: var(--gray); display: flex; font-size: 14px; font-weight: 300; gap: 12px; line-height: 2.2; padding: 10px 0; border-bottom: 1px solid rgba(224,221,214,.5); }
.policy-list li:last-child { border-bottom: none; }
.policy-list-bullet { background: var(--amber-mid); border-radius: 50%; flex-shrink: 0; height: 6px; margin-top: 10px; width: 6px; }

.policy-table-wrap { border: 1px solid var(--border); border-radius: 4px; margin-bottom: 20px; overflow: hidden; overflow-x: auto; }
.policy-table { border-collapse: collapse; width: 100%; }
.policy-table th { background: var(--amber-pale); border-bottom: 1px solid var(--border); color: var(--dark); font-size: 13px; font-weight: 400; letter-spacing: .04em; padding: 14px 20px; text-align: left; width: 200px; }
.policy-table td { border-bottom: 1px solid var(--border); color: var(--gray); font-size: 13px; font-weight: 300; line-height: 2; padding: 14px 20px; }
.policy-table tr:last-child th,
.policy-table tr:last-child td { border-bottom: none; }

.policy-highlight { background: var(--amber-pale); border-left: 3px solid var(--amber); border-radius: 0 4px 4px 0; margin-bottom: 20px; padding: 20px 24px; }
.policy-highlight p { color: var(--dark); font-size: 14px; font-weight: 300; line-height: 2.2; }

.contact-info-simple { border: 1px solid var(--border); border-radius: 4px; margin-top: 56px; overflow: hidden; }
.contact-info-simple-header { background: var(--amber-pale); border-bottom: 1px solid var(--border); padding: 18px 28px; }
.contact-info-simple-header h3 { color: var(--dark); font-family: var(--serif); font-size: 16px; font-weight: 400; letter-spacing: .04em; }
.contact-info-simple-body { padding: 28px; }
.contact-info-simple-body p { color: var(--gray); font-size: 14px; font-weight: 300; line-height: 2.2; }

/* ===========================
   INNER PAGES RESPONSIVE — 768px
=========================== */
@media (max-width: 768px) {
    .page-hero { padding: 96px 24px 52px; }
    .page-hero::before { font-size: 64px; right: 16px; }
    .page-hero h1 { font-size: 28px; }
    .cta-banner { flex-direction: column; gap: 24px; padding: 48px 24px; text-align: center; }
    .cta-banner h2 { font-size: 20px; }

    /* about */
    .page-nav { padding: 0 24px; }
    .page-nav a { padding: 14px 16px; font-size: 12px; }
    .profile-section { grid-template-columns: 1fr; }
    .profile-img-area { min-height: 260px; }
    .profile-content { padding: 36px 24px; }
    .career-section { padding: 56px 24px; }
    .career-grid { grid-template-columns: 1fr; gap: 32px; }
    .career-heading { position: static; }
    .career-heading h2 { font-size: 24px; }
    .policy-section-wrap { padding: 56px 24px; }
    .policy-intro { grid-template-columns: 1fr; gap: 32px; }
    .policy-intro h2 { font-size: 24px; }
    .policy-items-grid { grid-template-columns: 1fr; }
    .strength-section { padding: 56px 24px; }

    /* services */
    .service-nav { padding: 0 16px; }
    .service-nav a { padding: 14px 16px; font-size: 12px; }
    .service-section { padding: 48px 24px; }
    .service-grid { grid-template-columns: 1fr !important; gap: 32px; }
    .service-grid.reverse .service-info { order: 1; }
    .service-grid.reverse .service-visual { order: 2; }
    .flow-section { padding: 48px 24px; }

    /* blog */
    .blog-container { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
    .blog-sidebar { position: static; }
    .featured-post { grid-template-columns: 1fr; }
    .featured-img { min-height: 200px; }
    .featured-content { padding: 28px 24px; }
    .blog-grid { grid-template-columns: 1fr; }

    /* single */
    .single-container { padding: 48px 24px 64px; }

    /* contact */
    .contact-info-strip { padding: 0 24px; flex-direction: column; }
    .contact-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-left: 0 !important; }
    .contact-info-item:last-child { border-bottom: none; }
    .contact-container { padding: 48px 24px 64px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .check-grid { grid-template-columns: 1fr; }
    .check-grid .wpcf7-form-control { grid-template-columns: 1fr; }
    .price-inquiry br { display: inline; }

    /* pricing */
    .pricing-note-bar { padding: 14px 24px; }
    .pricing-section { padding: 48px 24px; }
    .price-cards { grid-template-columns: 1fr; }
    .faq-section { padding: 48px 24px; }

    /* privacy */
    .content-container { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 64px; }
    .content-container aside { display: none; }
    .policy-table th { width: 110px; }
}

/* ===========================
   INNER PAGES RESPONSIVE — 480px
=========================== */
@media (max-width: 480px) {
    .page-hero { padding: 88px 20px 44px; }
    .page-hero::before { display: none; }
    .page-hero h1 { font-size: 24px; }
    .cta-banner { padding: 40px 20px; }

    /* about */
    .profile-content { padding: 28px 20px; }
    .profile-table th { width: 90px; font-size: 10px; }
    .career-section, .policy-section-wrap, .strength-section { padding: 48px 20px; }
    .career-item { grid-template-columns: 40px 1fr; gap: 16px; }

    /* services */
    .service-section { padding: 40px 20px; }
    .flow-section { padding: 40px 20px; }

    /* blog */
    .blog-container { padding: 40px 20px; }
    .featured-content { padding: 24px 20px; }

    /* single */
    .single-container { padding: 40px 20px 56px; }

    /* contact */
    .contact-container { padding: 40px 20px 56px; }

    /* pricing */
    .pricing-section { padding: 40px 20px; }
    .faq-section { padding: 40px 20px; }
    .pricing-table th { width: 90px; font-size: 10px; padding: 10px 8px; }
    .pricing-table td { font-size: 11px; padding: 10px 8px; }

    /* privacy */
    .content-container { padding: 40px 20px 56px; }
    .policy-table th { width: 90px; font-size: 11px; }
}

/* ===========================
   RESPONSIVE — SP (480px)
=========================== */
@media (max-width: 480px) {

    /* FV */
    .fv-left { padding: 40px 20px 36px; }
    .fv h1 { font-size: 24px; }
    .fv h1 em { font-size: 20px; }
    .fv-btns { flex-direction: column; }
    .btn-main, .btn-sub { text-align: center; }

    /* trust */
    .trust-item { flex: 1 1 100%; }
    .trust-item:nth-child(odd) { border-right: none; }

    /* sections */
    .sec, .sec-warm, .sec-light { padding: 48px 20px; }

    /* flow */
    .flow-grid { grid-template-columns: 1fr; }
    .flow-card { padding: 28px 20px; }
    .flow-illust { height: 80px; }

    /* footer */
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ===========================
   Contact Form 7 レイアウト修正
=========================== */
.wpcf7 br { display: none; }
/* スクリーンリーダー用要素を視覚的に非表示（CF7デフォルトCSS無効化の補填） */
.wpcf7 .screen-reader-response { position: absolute !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; height: 1px !important; width: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; }
.wpcf7-response-output { display: none !important; height: 0 !important; overflow: hidden !important; border: none !important; margin: 0 !important; padding: 0 !important; }
.wpcf7-response-output.wpcf7-mail-sent-ok { display: block !important; height: auto !important; padding: 14px 18px !important; background: #f0faf4 !important; border: 1px solid #4caf7d !important; border-radius: 4px !important; color: #1e6b3c !important; font-size: 14px !important; margin-bottom: 24px !important; }
.wpcf7-response-output.wpcf7-mail-sent-ng { display: block !important; height: auto !important; padding: 14px 18px !important; background: #fff5f5 !important; border: 1px solid #e05555 !important; border-radius: 4px !important; color: #c0392b !important; font-size: 14px !important; margin-bottom: 24px !important; }
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-validation-failed,
.wpcf7-response-output.wpcf7-acceptance-missing { display: block !important; height: auto !important; padding: 14px 18px !important; background: #fff5f5 !important; border: 1px solid #e05555 !important; border-radius: 4px !important; color: #c0392b !important; font-size: 14px !important; margin-bottom: 24px !important; }
.wpcf7 form { border: none; }
.wpcf7 hr { display: none; }
.hidden-fields-container { display: none !important; }
.privacy-check .wpcf7-acceptance .wpcf7-list-item { display: flex; }
.privacy-check .wpcf7-acceptance .wpcf7-list-item label { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.privacy-check .wpcf7-acceptance input[type="checkbox"] { accent-color: var(--amber); flex-shrink: 0; margin-top: 0; width: 16px; height: 16px; }
.privacy-check .wpcf7-acceptance .wpcf7-list-item-label { color: var(--gray); font-size: 13px; font-weight: 300; line-height: 1.9; }
.privacy-check .wpcf7-acceptance .wpcf7-list-item-label a { color: var(--amber); }
.wpcf7-form-control-wrap { display: block; width: 100%; }
.form-group .wpcf7-form-control-wrap { margin-top: 0; }
.form-group .wpcf7-form-control.form-input { width: 100%; }
.check-grid .wpcf7-form-control-wrap { grid-column: 1 / -1; }
.check-grid .wpcf7-form-control-wrap .wpcf7-form-control { width: 100%; }

/* ===========================
   Contact Form 7 チェックボックス
=========================== */
.check-grid .wpcf7-form-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}
.check-grid .wpcf7-list-item {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 12px 14px;
    margin: 0;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.check-grid .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}
.check-grid .wpcf7-list-item input[type="checkbox"] {
    accent-color: var(--amber);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
}
.check-grid .wpcf7-list-item .wpcf7-list-item-label {
    color: var(--gray);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-all;
}
.check-grid .wpcf7-list-item:has(input:checked) {
    background: var(--amber-light);
    border-color: var(--amber-mid);
}
.check-grid .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label {
    color: var(--dark);
}

/* ===========================
   フォームラベル補足テキスト
=========================== */
.form-label-hint {
    display: inline-block;
    font-size: 11px;
    color: var(--gray);
    font-weight: 300;
    margin-left: 8px;
    background: var(--light-gray);
    padding: 2px 7px;
    border-radius: 2px;
    vertical-align: middle;
    letter-spacing: 0;
}

/* ===========================
   Contact Form 7 バリデーションエラー
=========================== */
.wpcf7-not-valid-tip {
    color: #c0392b;
    font-size: 12px;
    font-weight: 400;
    margin-top: 6px;
    display: block;
}
.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: block;
}
.wpcf7 .form-input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
    border-color: #e05555 !important;
    background: #fff8f8 !important;
}

/* ===========================
   サンクスページ
=========================== */
.thanks-message {
    text-align: center;
    padding: 64px 32px;
}
.thanks-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    font-size: 28px;
    margin-bottom: 32px;
}
.thanks-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 20px;
}
.thanks-body {
    color: var(--gray);
    font-size: 15px;
    line-height: 2;
    margin-bottom: 40px;
}
.thanks-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--amber);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: background .2s;
}
.thanks-btn:hover {
    background: var(--amber-mid);
}

/* ===========================
   reCAPTCHA バッジ制御
=========================== */
/* 全ページで非表示 */
.grecaptcha-badge {
    visibility: hidden !important;
}
/* お問い合わせページのみ表示 */
.page-template-page-contact .grecaptcha-badge {
    visibility: visible !important;
}
