/* =========================================
   ハルカ文章塾 — Main Stylesheet
   cold-sea-627.css
   ========================================= */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #5a1e48;
    --navy-deep: #131e3e;
    --orange: #e8622a;
    --orange-light: #f07840;
    --white: #ffffff;
    --off-white: #f7f5f2;
    --grey-light: #f0eee9;
    --grey-mid: #9a9690;
    --grey-dark: #4a4744;
    --near-black: #1a1917;
    --font-inter: 'Inter', sans-serif;
    --font-manrope: 'Manrope', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --max-w: 1340px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --transition: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.7;
    color: var(--near-black);
    background: var(--white);
    padding-top: 80px;
    transition: padding-top 0.3s ease;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-to-content {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--orange);
    color: var(--white);
    padding: 12px 24px;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}

.section-eyebrow {
    font-family: var(--font-montserrat);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.accent-rule {
    width: 40px;
    height: 2px;
    background: var(--orange);
    margin-bottom: 24px;
}

.hairline {
    width: 100%;
    height: 1px;
    background: #e0ddd8;
}

.hairline-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================
   HEADER
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    border-bottom: 1px solid #e8e5e0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-link svg {
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-manrope);
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-dark);
    transition: color 0.2s;
    padding: 4px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s var(--transition);
}

.nav-link:hover,
.nav-link--active {
    color: var(--near-black);
}

.nav-link:hover::after,
.nav-link--active::after {
    width: 100%;
}

.nav-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.nav-phone-link:hover {
    background: var(--navy);
    color: var(--white);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--near-black);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-btn.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 32px 40px;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-manrope);
    font-size: 22px;
    font-weight: 500;
    color: var(--near-black);
    border-bottom: 1px solid #e8e5e0;
    padding-bottom: 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-image-col {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text-col {
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 80px 64px;
}

.hero-content {
    max-width: 520px;
}

.hero-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.hero-meta span {
    font-family: var(--font-montserrat);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
}

.hero-meta span+span::before {
    content: '·';
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.hero-accent {
    margin-bottom: 28px;
}

.hero-accent div {
    width: 48px;
    height: 2px;
    background: var(--orange);
}

.hero-title {
    font-family: var(--font-manrope);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-family: var(--font-montserrat);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: none;
    transition: color 0.2s;
}

.scroll-indicator:hover {
    color: var(--orange);
}

.scroll-indicator i {
    font-size: 14px;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-content {
    padding: 20px 0;
}

.about-title {
    font-family: var(--font-manrope);
    font-size: clamp(26px, 2.5vw, 40px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--near-black);
    margin-bottom: 20px;
}

.about-title strong {
    font-weight: 700;
}

.about-lead {
    font-size: 17px;
    color: var(--grey-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-body {
    color: var(--grey-dark);
    line-height: 1.8;
    margin-bottom: 32px;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat-number {
    font-family: var(--font-montserrat);
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--grey-mid);
    margin-top: 4px;
}

/* =========================================
   COURSES SECTION
   ========================================= */
.courses-section {
    padding: 100px 0;
    background: var(--off-white);
}

.courses-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.courses-header .accent-rule {
    margin: 0 auto 24px;
}

.section-title {
    font-family: var(--font-manrope);
    font-size: clamp(28px, 2.8vw, 44px);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-title strong {
    font-weight: 700;
}

.section-lead {
    color: var(--grey-dark);
    font-size: 16px;
    line-height: 1.8;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.course-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    transition: transform 0.25s var(--transition), box-shadow 0.25s;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.course-card--featured {
    background: var(--navy);
}

.course-card--featured .course-title,
.course-card--featured .course-price,
.course-card--featured .course-desc,
.course-card--featured .course-feature {
    color: var(--white) !important;
}

.course-card--featured .course-feature i {
    color: var(--orange) !important;
}

.course-badge {
    display: inline-block;
    font-family: var(--font-montserrat);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.course-eyebrow {
    font-size: 11px;
    font-family: var(--font-montserrat);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
    font-weight: 600;
}

.course-title {
    font-family: var(--font-manrope);
    font-size: 22px;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 12px;
}

.course-price {
    font-family: var(--font-montserrat);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.course-period {
    font-size: 13px;
    color: var(--grey-mid);
    margin-bottom: 20px;
}

.course-desc {
    font-size: 14px;
    color: var(--grey-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.course-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--grey-dark);
}

.course-feature i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 12px;
}

.btn-course {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-course--primary {
    background: var(--orange);
    color: var(--white);
}

.btn-course--primary:hover {
    background: var(--orange-light);
}

.btn-course--outline {
    border: 1.5px solid var(--navy);
    color: var(--navy);
}

.btn-course--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-course--outline-white {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-course--outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Private lessons card */
.private-lesson-band {
    margin-top: 40px;
    background: var(--grey-light);
    border-left: 3px solid var(--orange);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.private-lesson-band h3 {
    font-family: var(--font-manrope);
    font-size: 20px;
    font-weight: 600;
}

.private-lesson-band p {
    color: var(--grey-dark);
    font-size: 15px;
    margin-top: 4px;
}

.private-price {
    font-family: var(--font-montserrat);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    padding: 100px 0;
}

.process-header {
    max-width: 540px;
    margin-bottom: 64px;
}

.process-title {
    font-family: var(--font-manrope);
    font-size: clamp(26px, 2.5vw, 40px);
    font-weight: 300;
    margin-bottom: 12px;
}

.process-title strong {
    font-weight: 700;
}

.process-subtitle {
    color: var(--grey-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid #e0ddd8;
    align-items: start;
}

.process-step:last-child {
    border-bottom: 1px solid #e0ddd8;
}

.step-number {
    font-family: var(--font-montserrat);
    font-size: 42px;
    font-weight: 700;
    color: #e0ddd8;
    line-height: 1;
}

.step-title {
    font-family: var(--font-manrope);
    font-size: 18px;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 6px;
}

.step-description {
    color: var(--grey-dark);
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================
   INSTRUCTOR SECTION
   ========================================= */
.instructors-section {
    padding: 100px 0;
    background: var(--grey-light);
}

.instructors-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 64px;
}

.instructors-header .accent-rule {
    margin: 0 auto 24px;
}

.instructor-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 64px;
}

.instructor-spread:last-of-type {
    margin-bottom: 0;
}

.instructor-spread--reversed .instructor-image {
    order: 2;
}

.instructor-spread--reversed .instructor-content {
    order: 1;
}

.instructor-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.instructor-image:hover img {
    filter: grayscale(0%);
}

.instructor-content {
    padding: 20px 0;
}

.instructor-role {
    font-family: var(--font-montserrat);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 8px;
}

.instructor-name {
    font-family: var(--font-manrope);
    font-size: clamp(24px, 2.2vw, 36px);
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 16px;
}

.instructor-bio {
    color: var(--grey-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.instructor-creds {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cred-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--grey-dark);
}

.cred-item i {
    color: var(--orange);
    margin-top: 3px;
    font-size: 13px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 60px;
}

.testimonials-header .accent-rule {
    margin: 0 auto 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 36px 32px;
}

.testimonial-stars {
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 600;
    color: var(--near-black);
}

.testimonial-meta {
    font-size: 12px;
    color: var(--grey-mid);
    margin-top: 2px;
}

/* =========================================
   CONTACT BAND (Dark)
   ========================================= */
.contact-band {
    background: var(--navy);
    padding: 100px 0;
}

.contact-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-band-header {
    margin-bottom: 40px;
}

.contact-band-eyebrow {
    font-family: var(--font-montserrat);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.contact-band-title {
    font-family: var(--font-manrope);
    font-size: clamp(28px, 2.8vw, 44px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-band-title strong {
    font-weight: 700;
}

.contact-band-lead {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.detail-label {
    font-family: var(--font-montserrat);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 12px;
}

.detail-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.detail-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.detail-link:hover {
    color: var(--orange);
}

/* Contact form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group:last-of-type {
    margin-bottom: 24px;
}

.form-label {
    font-size: 12px;
    font-family: var(--font-montserrat);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.form-input,
.form-textarea,
.form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: border-color 0.2s;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--orange);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select option {
    background: var(--navy);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--orange-light);
}

/* =========================================
   NEWSLETTER BAND
   ========================================= */
.newsletter-band {
    background: var(--near-black);
    padding: 64px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content {
    max-width: 480px;
}

.newsletter-title {
    font-family: var(--font-manrope);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    padding: 12px 20px;
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 15px;
    width: 300px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--orange);
}

.newsletter-btn {
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--orange-light);
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background: var(--navy-deep);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-row {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-info a,
.footer-contact-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: color 0.2s;
    line-height: 1.5;
}

.footer-contact-info a:hover {
    color: var(--orange);
}

.footer-contact-info i {
    color: var(--orange);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-col-title {
    font-family: var(--font-montserrat);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-legal-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--near-black);
    border-top: 2px solid var(--orange);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s var(--transition);
}

.cookie-consent.is-visible {
    transform: translateY(0);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px 40px;
}

.cookie-consent__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 680px;
}

.cookie-consent__link {
    color: var(--orange);
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.cookie-consent__btn--reject {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-consent__btn--reject:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.cookie-consent__btn--accept {
    background: var(--orange);
    color: var(--white);
}

.cookie-consent__btn--accept:hover {
    background: var(--orange-light);
}

/* =========================================
   INNER PAGES
   ========================================= */
.page-hero {
    background: var(--navy);
    padding: 80px 0;
}

.page-hero-inner {
    max-width: 760px;
}

.page-hero .section-eyebrow {
    color: var(--orange);
}

.page-hero h1 {
    font-family: var(--font-manrope);
    font-size: clamp(30px, 3vw, 52px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero h1 strong {
    font-weight: 700;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.8;
}

.text-section {
    padding: 80px 0;
}

.text-content {
    max-width: 840px;
}

.text-content h2 {
    font-family: var(--font-manrope);
    font-size: 26px;
    font-weight: 600;
    color: var(--near-black);
    margin: 40px 0 12px;
}

.text-content h2:first-child {
    margin-top: 0;
}

.text-content p {
    color: var(--grey-dark);
    line-height: 1.85;
    margin-bottom: 16px;
}

.text-content ul {
    margin: 12px 0 16px 20px;
}

.text-content ul li {
    color: var(--grey-dark);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.text-content a {
    color: var(--orange);
    text-decoration: underline;
}

.text-content strong {
    color: var(--near-black);
}

/* Company info specific */
.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 80px 0;
}

.company-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.company-data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

.company-data-table tr {
    border-bottom: 1px solid #e8e5e0;
}

.company-data-table td {
    padding: 14px 0;
    font-size: 15px;
    vertical-align: top;
}

.company-data-table td:first-child {
    width: 140px;
    color: var(--grey-mid);
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-right: 20px;
}

.company-data-table td:last-child {
    color: var(--grey-dark);
}

/* contact page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 0;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-info-icon i {
    color: var(--white);
    font-size: 16px;
}

.contact-info-label {
    font-family: var(--font-montserrat);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 15px;
    color: var(--grey-dark);
}

.contact-map {
    margin-top: 32px;
    background: var(--grey-light);
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map span {
    color: var(--grey-mid);
    font-size: 14px;
}

/* contact form light */
.contact-form-light {
    background: var(--off-white);
    padding: 40px;
}

.contact-form-light .form-input,
.contact-form-light .form-textarea,
.contact-form-light .form-select {
    background: var(--white);
    border: 1px solid #ddd;
    color: var(--near-black);
    border-radius: var(--radius-sm);
}

.contact-form-light .form-input::placeholder,
.contact-form-light .form-textarea::placeholder {
    color: var(--grey-mid);
}

.contact-form-light .form-label {
    color: var(--grey-dark);
}

.contact-form-light .form-input:focus,
.contact-form-light .form-textarea:focus,
.contact-form-light .form-select:focus {
    border-color: var(--orange);
    outline: none;
}

.contact-form-light .btn-submit {
    background: var(--navy);
}

.contact-form-light .btn-submit:hover {
    background: var(--orange);
}

/* =========================================
   ANIMATIONS
   ========================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin: 0 auto;
    }

    .contact-band-inner {
        grid-template-columns: 1fr;
    }

    .contact-details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }

    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-image-col {
        min-height: 360px;
    }

    .hero-text-col {
        padding: 60px 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instructor-spread {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .instructor-spread--reversed .instructor-image {
        order: 0;
    }

    .instructor-spread--reversed .instructor-content {
        order: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-input {
        flex: 1;
        width: auto;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .hairline-container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .main-header {
        height: 70px;
    }

    .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .private-lesson-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .stat-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .header-inner {
        padding: 0 24px;
    }
}