/*
Theme Name: 足立恵一税理士事務所
Theme URI: https://adachi-tax.com
Author: C-StoryMaker
Author URI: https://c-storymaker.com
Description: 足立恵一税理士事務所 公式ウェブサイト WordPress テーマ
Version: 1.0.0
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://image.c-storymaker.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://image.c-storymaker.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://image.c-storymaker.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://image.c-storymaker.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;
    }
}

/* ===========================
   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; }
}
