:root {
    /* Color Palette - Warm, Feminine, Clean */
    --color-bg: #fffdf9;
    /* Soft cream white */
    --color-text-main: #4a4a4a;
    /* Warm dark grey */
    --color-text-light: #7a7a7a;
    --color-accent: #e6b422;
    /* Muted Gold for Points/Highlights */
    --color-primary: #d4a373;
    /* Warm beige/terracotta */
    --color-secondary: #faedcd;
    /* Very light beige for backgrounds */
    --color-white: #ffffff;

    --font-serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

    --spacing-section: 80px;
    --spacing-container: 20px;

    --max-width: 1000px;
    /* Compact content width for elegance */

    /* Fix fixed header obscuring anchor links */
    scroll-padding-top: 140px;
    scroll-behavior: smooth;
    
    /* Map responsive sizes */
    --map-width-mobile: 400px;
    --map-height-mobile: 300px;
    --map-width-tablet: 600px;
    --map-height-tablet: 450px;
    --map-width-desktop: 800px;
    --map-height-desktop: 600px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.section {
    padding: var(--spacing-section) 0;
}

.text-center {
    text-align: center;
}

/* Utilities */
/* Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    /* No transition here to avoid initial fade-out */
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* LINE Button Styles */
.btn-line {
    background: #ffffff;
    color: #00B900 !important;
    border: 2px solid #00B900;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 185, 0, 0.2);
}

.btn-line:hover {
    /* No visual change on hover */
    background: #ffffff;
    color: #00B900 !important;
    border-color: #00B900;
    box-shadow: none;
    transform: none;
}

.btn-line:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 185, 0, 0.3);
}

.btn-line i {
    font-size: 28px;
    margin-right: 8px;
}




/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 80px;
    /* Ensure space for vertical alignment */
    display: flex;
    align-items: center;
    padding-right: 5rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.logo {
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

.logo a {
    color: var(--color-primary);
}

.nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.sns-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.sns-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sns-line {
    color: #00b900;
}

.sns-instagram {
    color: #dd2a7b;
}

.sns-blog {
    color: var(--color-primary);
}

.sns-icon:hover {
    opacity: 0.7;
}

.btn {
    display: inline-block;
    padding: 0.8em 2em;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-nav {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    padding: 0.5em 1.5em;
    /* Smaller padding for nav */
}

/* Hero Section */
.hero {
    padding-top: calc(var(--spacing-section) + 80px);
    /* Account for fixed header */
    background: radial-gradient(circle at top right, var(--color-secondary), #fff);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    line-height: 1.4;
}

.hero-text p {
    font-size: 1.1em;
    color: var(--color-text-light);
}

.hero-images {
    position: relative;
    height: clamp(300px, 36vw, 420px);
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

.hero-img {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.img-1 {
    top: 0;
    right: 0;
    z-index: 1;
    width: 60%;
}

.img-2 {
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 50%;
}

.img-3 {
    top: 40%;
    left: 40%;
    z-index: 3;
    width: 30%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

@media (max-width: 993px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-images {
        margin: 1.5rem auto 0;
        height: clamp(260px, 52vw, 380px);
        max-width: 560px;
    }
}

/* Features */
.features-section {
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    position: relative;
}

.feature-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #eecf81;
    font-weight: bold;
    opacity: 0.5;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* Checklist */
.checklist-section {
    background-color: var(--color-secondary);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* 2 cols on wide */
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.check-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Zig Zag Layout (About) */
.zig-zag {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.zig-zag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zig-zag-item.reverse .zig-zag-img {
    order: 2;
}

.zig-zag-item.reverse .zig-zag-text {
    order: 1;
}

.zig-zag-img img {
    border-radius: 50%;
    /* Oval/Ellipse shape */
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    box-shadow: 10px 10px 0 var(--color-secondary);
}

.zig-zag-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 0.5em;
}

/* Menu */
.menu-list {
    max-width: 800px;
    margin: 3rem auto;
    border: 1px solid var(--color-secondary);
    padding: 2rem;
    border-radius: 8px;
}

.menu-item {
    border-bottom: 1px dashed #ddd;
    padding: 1.5rem 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item dt {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.menu-item .duration {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--color-text-light);
}

.menu-item .price {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-family: var(--font-serif);
}

.menu-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* Access Map */
.hours-table {
    margin: 2rem auto;
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    background: white;
}

.hours-table th,
.hours-table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: center;
}

.hours-table th {
    background: var(--color-secondary);
}

/* Reservation / Status */
.status-box {
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
}

/* Calendar styles */
.calendar-wrapper {
    max-width: 720px;
    margin: 2rem auto;
    background: white;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 1rem;
}
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.cal-nav {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-text-main);
}
.calendar-title {
    text-align: center;
    width: 100%;
    font-size: 1.1rem;
}
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}
.calendar .day-header,
.calendar .day-cell {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0.6rem;
    min-height: 80px;
}
.calendar .day-header {
    background: var(--color-secondary);
    text-align: center;
    font-weight: 600;
}
.day-cell {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25rem;
}
.date-number {
    font-weight: 600;
    color: var(--color-text-main);
}
.status-symbol {
    margin-top: auto;
    font-size: 2.4rem; /* base size for most symbols */
    /* Reserve a consistent symbol area so larger symbols don't shift layout */
    display: inline-block;
    min-height: 2.4rem;
    line-height: 2.4rem;
}
.status-symbol.open { color: #2aa7a0; font-size: 4.6rem; line-height: 2.4rem; }
.status-symbol.partial { color: #e6a800; font-size: 2.2rem; line-height: 2.4rem; }
.status-symbol.full { color: #e04a5a; }
.calendar-legend { margin-top: 0.75rem; display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.legend-item { font-size:0.95rem; color:var(--color-text-light); display:flex; gap:0.4rem; align-items:center; }
.legend-item .symbol { font-weight:700; }
.legend-item .symbol.open { font-size: 1.4rem; }

/* Past / inactive day styling */
.calendar .day-cell.past {
    background: #fafafa;
    color: var(--color-text-light);
}
.calendar .day-cell.past .date-number {
    color: #b5b5b5;
}
.date-number-past {
    color: #b5b5b5;
}
.status-symbol.past-symbol {
    opacity: 0.45;
    color: #c0c0c0 !important;
}
.day-cell.past[aria-disabled="true"] {
    pointer-events: none;
}

@media (max-width:600px) {
  .calendar .day-header, .calendar .day-cell { min-height: 64px; padding: 0.4rem; }
}

.status-text {
    font-size: 1.25rem;
    margin-top: 1rem;
    font-weight: bold;
}

.status-available {
    color: #2ecc71;
}

.status-full {
    color: #e74c3c;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-lg {
    padding: 1em 3em;
    font-size: 1.1rem;
}

.btn-primary {
    background: #ffffff;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    /* No visual change on hover */
    background: #ffffff;
    color: var(--color-primary) !important;
    border-color: var(--color-primary);
    box-shadow: none;
    transform: none;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(212, 163, 115, 0.3);
}

.btn-secondary {
    background-color: #999;
    color: white;
}

.footer {
    background: #333;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Section Title Common */
.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    color: var(--color-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .header {
        padding-right: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav ul {
        gap: 1rem;
        font-size: 0.95rem;
    }

    .btn-nav {
        padding: 0.45em 1.05em;
        font-size: 0.9rem;
    }

    .sns-icons {
        gap: 0.6rem;
    }

    .sns-icon {
        width: 45px;
        height: 45px;
        font-size: 1.26rem;
    }
}

@media (max-width: 993px) {
    .header {
        padding-right: 0.5rem;
    }
}

@media (max-width: 900px) {
    .header {
        min-height: auto;
        flex-wrap: wrap;
        padding: 0.45rem 0.45rem;
        gap: 0.4rem;
    }

    .header-container {
        width: 100%;
        order: 1;
    }

    .logo {
        font-size: 0.9rem;
    }

    .header .nav ul {
        gap: 0.55rem;
    }

    .header .nav ul li {
        display: none;
    }

    .header .nav ul li:nth-child(3),
    .header .nav ul li:last-child {
        display: block;
    }

    .header .nav ul li:last-child a.btn-nav {
        padding: 0.45em 0.95em;
        font-size: 0.9rem;
        border-radius: 40px;
    }

    .sns-icons {
        width: 100%;
        order: 2;
        justify-content: flex-end;
        gap: 0.55rem;
        padding: 0.25rem 0;
    }

    .sns-icon {
        width: 42px;
        height: 42px;
        font-size: 1.19rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zig-zag-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zig-zag-item.reverse .zig-zag-img {
        order: -1;
    }

    /* Header: show only the reservation button on small screens */
    .header {
        min-height: auto;
        flex-wrap: wrap;
        padding: 0.5rem 0.4rem;
        gap: 0.5rem;
    }

    .header-container {
        gap: 1rem;
        width: 100%;
        order: 1;
    }

    .logo {
        font-size: 1.1rem;
    }

     /* Keep nav available and show only reservation on mobile screens. */
    .header .nav {
        display: flex;
        align-items: center;
    }

    .header .nav ul {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .header .nav ul li a {
        font-size: 0.82rem;
    }

    .header .nav ul li {
        display: none;
    }

    .header .nav ul li:nth-child(3),
    .header .nav ul li:last-child {
        display: block;
    }

    .header .nav ul li:last-child a.btn-nav {
        padding: 0.5em 1em;
        font-size: 0.82rem;
        border-radius: 40px;
    }

    .sns-icons {
        gap: 0.6rem;
        width: 100%;
        order: 2;
        justify-content: flex-end;
        padding: 0.3rem 0;
    }

    .sns-icon {
        width: 42px;
        height: 42px;
        font-size: 1.19rem;
    }

    .hero-images {
        height: clamp(220px, 70vw, 300px);
        max-width: 420px;
        margin-top: 1.5rem;
    }

    .img-1 {
        width: 58%;
        right: 4%;
        top: 0;
    }

    .img-2 {
        width: 52%;
        left: 0;
        bottom: 0;
    }

    .img-3 {
        width: 34%;
        left: 33%;
        top: 34%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    /* Typography scaling */
    body {
        font-size: 16px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-item img {
        height: auto;
    }

    .feature-item h4 {
        font-size: 1.05rem;
    }

    /* Narrow spacing between feature cards on mobile */
    .features-grid {
        gap: 1rem; /* 元は 2rem -> スマホで狭める */
        margin-top: 1.5rem;
    }

    .feature-item {
        padding: 1rem; /* 元は 2rem -> 半分にして詰める */
    }

    /* Hide 4th, 5th, 6th feature items on mobile */
    .feature-item:nth-child(n+4) {
        display: none;
    }

    .status-text {
        font-size: 1rem;
    }

    /* Calendar adjustments for small screens */
    .calendar .day-header, .calendar .day-cell { min-height: 56px; padding: 0.3rem; }

    /* Status symbol scaling - keep original ratios but make all symbols slightly smaller on mobile */
    /* デスクトップの基準: base=2.4rem, open=4.6rem (~1.917x), partial=2.2rem (~0.917x) */
    .status-symbol {
        font-size: 1.8rem; /* base を小さく */
        min-height: 1.8rem;
        line-height: 1.8rem;
    }

    .status-symbol.open {
        font-size: 3.45rem; /* 1.8 * 1.9167 ≈ 3.45 */
        line-height: 1.8rem;
    }

    .status-symbol.partial {
        font-size: 1.65rem; /* 1.8 * 0.9167 ≈ 1.65 */
        line-height: 1.8rem;
    }

    .status-symbol.full {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
}

/* Tighten top spacing for specific sections to reduce whitespace above headings */
section#access,
section#reservation,
section#menu {
    /* 元の --spacing-section は 80px なので上を狭める */
    padding-top: 40px;
}

@media (max-width: 768px) {
    section#access,
    section#reservation,
    section#menu {
        /* モバイルはさらに狭める */
        padding-top: 24px;
    }
}

/* Menu Details Page */
.page-header {
    padding: 100px 0 60px;
}

.menu-detail-item {
    margin-bottom: 4rem;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.detail-header h3 {
    font-size: 1.8rem;
    color: var(--color-text-main);
}

.detail-duration {
    font-size: 1rem;
    font-weight: normal;
    margin-left: 0.5rem;
}

.detail-price {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: bold;
    font-family: var(--font-serif);
}

.detail-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.detail-image {
    flex: 1;
    min-width: 300px;
}

.detail-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.detail-text {
    flex: 1.5;
}

.detail-text h4 {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.detail-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.detail-features {
    background: #fff;
    border: 1px dashed var(--color-secondary);
    padding: 1.5rem;
    border-radius: 8px;
}

.detail-features h5 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-main);
    border-left: 4px solid var(--color-primary);
    padding-left: 0.8rem;
}

.detail-features ul {
    list-style: disc; /* override reset */
    padding-left: 1.5rem;
}

.detail-accordion {
    margin-top: 1.5rem;
    border-top: 1px dashed var(--color-secondary);
    padding-top: 1rem;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    padding: 0.4rem 0;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-main);
    cursor: pointer;
}

.accordion-trigger:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.detail-accordion.is-open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.detail-accordion.is-open .accordion-panel {
    opacity: 1;
}

.accordion-panel-inner {
    padding-top: 0.5rem;
}

.detail-features li {
    margin-bottom: 0.5rem;
}

.separator {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 4rem 0;
}

.mt-md {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .detail-content {
        flex-direction: column;
    }
    
    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-image {
        width: 100%;
    }
}

/* Responsive Map */
.map-iframe {
    width: var(--map-width-mobile);
    height: var(--map-height-mobile);
    display: block;
    margin: 0 auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .map-iframe {
        width: var(--map-width-tablet);
        height: var(--map-height-tablet);
    }
}

@media (min-width: 1025px) {
    .map-iframe {
        width: var(--map-width-desktop);
        height: var(--map-height-desktop);
    }
}

/* Director Page */
.director-section {
    padding-top: 40px;
}

.director-profile {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 2.5rem;
    align-items: start;
    background: #fff;
    border: 1px solid #f0e7db;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.director-photo-wrap {
    position: relative;
}

.director-photo {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 8px 8px 0 var(--color-secondary);
}

.director-label {
    font-family: var(--font-serif);
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.director-name {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.director-credentials {
    list-style: disc;
    padding-left: 1.4rem;
    margin-top: 1rem;
}

.director-credentials li {
    margin-bottom: 0.35rem;
}

.media-section {
    padding-top: 50px;
}

.media-lead {
    max-width: 640px;
    margin: -0.5rem auto 2rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.25rem;
}

.media-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    border: 1px solid #ede7dd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.media-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 0.8rem;
}

.media-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    color: var(--color-text-main);
}

.media-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    min-height: 3.6em;
}

.media-action {
    display: inline-block;
    margin-top: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.media-line .media-icon {
    background: #ffffff;
    color: #00b900;
}

.media-instagram .media-icon {
    background: #ffffff;
    color: #dd2a7b;
    border: none;
    box-shadow: none;
}

.media-blog .media-icon {
    background: #9d7f57;
}

@media (max-width: 900px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .director-profile {
        grid-template-columns: 1fr;
        padding: 1.4rem;
    }

    .director-name {
        font-size: 1.6rem;
    }
}