/* ================================================================
   ABOUT PAGE — Editorial White Theme v4.0
   Playfair Display · Warm Cream · Antique Gold
   ================================================================ */

/* ── ABOUT HERO ──────────────────────────────────────────── */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 9rem 2rem 6rem;
    background: var(--cream-alt);
    border-bottom: 1px solid var(--b-soft);
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('assets/hero_banner.png') center/cover no-repeat;
    opacity: 0.06; filter: saturate(0.3) blur(2px);
}
.about-hero::after {
    content: '';
    position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 55%; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.about-hero-content {
    position: relative; z-index: 2;
    max-width: 780px;
    display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.about-badge {
    display: inline-block;
    font-family: var(--f-body); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 5px; text-transform: none;
    color: var(--gold); background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    padding: 0.45rem 1.4rem; border-radius: var(--rp);
}
.about-main-title {
    font-family: var(--f-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
}
.about-hero-subtitle {
    font-family: var(--f-serif); font-style: italic; font-weight: 300;
    font-size: 1.15rem; color: var(--ink-soft); line-height: 1.7;
    max-width: 580px;
}

/* ── STORY SECTION ───────────────────────────────────────── */
.about-story-section {
    padding: 8rem 0;
    background: var(--cream);
}
.about-story-section .story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
}
.story-image-box {
    position: relative; border-radius: var(--r2);
    overflow: hidden;
    box-shadow: var(--sh-lg);
}
.story-image-box::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-pale));
}
.about-story-img {
    width: 100%; height: 480px;
    object-fit: cover; display: block;
    filter: brightness(0.95) saturate(1.05) contrast(1.02);
    transition: transform 0.8s var(--ease);
}
.story-image-box:hover .about-story-img { transform: scale(1.04); }

.story-text-box { display: flex; flex-direction: column; gap: 1.5rem; }
.about-story-section .section-subtitle {
    font-family: var(--f-body); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 5px; text-transform: none; color: var(--gold);
    display: block;
}
.story-title {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700;
    color: var(--ink); line-height: 1.15;
}
.about-story-section .title-divider { margin: 0; }
.story-p {
    font-size: 0.97rem; color: var(--ink-soft); font-weight: 300; line-height: 1.85;
}
.story-p strong { color: var(--gold); font-weight: 900; }

/* ── TEAM / FOUNDER SECTION ──────────────────────────────── */
.about-team-section {
    padding: 7rem 0;
    background: var(--cream-alt);
    border-top: 1px solid var(--b-soft);
    border-bottom: 1px solid var(--b-soft);
}
.about-team-section .section-header { margin-bottom: 3.5rem; }
.about-team-section .section-subtitle {
    display: block; font-family: var(--f-body); font-size: 0.78rem;
    font-weight: 700; letter-spacing: 5px; text-transform: none;
    color: var(--gold); margin-bottom: 0.8rem;
}
.about-team-section .section-title {
    font-family: var(--f-display); font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700; color: var(--ink);
}

.founder-card {
    background: var(--cream);
    border: 1px solid var(--b-soft);
    border-top: 4px solid var(--gold);
    border-radius: var(--r3);
    padding: clamp(3rem, 5vw, 5rem);
    box-shadow: var(--sh-lg);
}
.founder-grid {
    display: grid; grid-template-columns: 1.3fr 0.7fr;
    gap: 5rem; align-items: center;
}
.founder-info { display: flex; flex-direction: column; gap: 1.3rem; }
.founder-role {
    font-family: var(--f-body); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 4px; text-transform: none; color: var(--gold);
}
.founder-name {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
    color: var(--ink); line-height: 1.1;
}
.founder-bio {
    font-size: 0.97rem; color: var(--ink-soft); font-weight: 300; line-height: 1.85;
}
.founder-quote {
    font-family: var(--f-serif); font-style: italic;
    font-size: 1.1rem; color: var(--ink-mid); line-height: 1.6;
    border-left: 3px solid var(--gold); padding-left: 1.5rem;
    margin-top: 0.5rem;
}
.founder-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative; height: 340px;
}
.visual-decor { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.decor-circle {
    width: 250px; height: 250px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-bg) 0%, transparent 65%);
}
.decor-ring {
    position: absolute; width: 290px; height: 290px;
    border: 1px dashed var(--gold-border); border-radius: 50%;
    animation: rotate 28s linear infinite;
}
.founder-placeholder-card {
    background: var(--cream);
    border: 1px solid var(--b-mid);
    border-top: 3px solid var(--gold);
    padding: 2.5rem 2rem;
    border-radius: var(--r2); text-align: center;
    width: 200px; box-shadow: var(--sh-md); z-index: 2;
    animation: float 5.5s ease-in-out infinite;
}
.icon-avatar { font-size: 3rem; margin-bottom: 1rem; display: block; }
.founder-placeholder-card h4 { font-family: var(--f-display); font-size: 1.05rem; color: var(--ink); margin-bottom: 0.25rem; }
.founder-placeholder-card p { font-size: 0.7rem; color: var(--gold); text-transform: none; letter-spacing: 2px; font-weight: 900; }

/* ── VALUES SECTION ──────────────────────────────────────── */
.about-values-section {
    padding: 8rem 0;
    background: var(--cream);
}
.about-values-section .section-header { margin-bottom: 3.5rem; }
.about-values-section .section-subtitle {
    display: block; font-family: var(--f-body); font-size: 0.78rem;
    font-weight: 700; letter-spacing: 5px; text-transform: none;
    color: var(--gold); margin-bottom: 0.8rem;
}
.about-values-section .section-title {
    font-family: var(--f-display); font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700; color: var(--ink);
}

.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.value-card {
    padding: 3.5rem 2.8rem;
    background: var(--cream);
    border: 1px solid var(--b-soft);
    border-radius: var(--r2);
    box-shadow: var(--sh-xs);
    transition: var(--t2); position: relative; overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-pale));
    transition: width 0.4s var(--ease);
}
.value-card:hover {
    transform: translateY(-8px); box-shadow: var(--sh-lg);
    border-color: var(--gold-border);
}
.value-card:hover::before { width: 100%; }

.value-number {
    font-family: var(--f-display); font-size: 3.5rem; font-weight: 700;
    color: transparent; -webkit-text-stroke: 1.5px var(--gold);
    display: block; margin-bottom: 1.5rem; line-height: 1; opacity: 0.28;
}
.value-title { font-family: var(--f-display); font-size: 1.25rem; color: var(--ink); margin-bottom: 0.9rem; }
.value-text { font-size: 0.9rem; color: var(--ink-soft); font-weight: 300; line-height: 1.75; }

/* ── HOTELS SECTION ───────────────────────────────────────── */
.about-hotels-section {
    padding: 8rem 0;
    background: var(--cream-alt);
    border-top: 1px solid var(--b-soft);
    border-bottom: 1px solid var(--b-soft);
}
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3.5rem;
}
.hotel-card {
    padding: 3.5rem 3rem 4rem;
    background: var(--cream);
    border: 1px solid var(--b-soft);
    border-top: 4px solid var(--gold);
    border-radius: var(--r2);
    box-shadow: var(--sh-md);
    transition: var(--t2);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
}
.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: var(--gold-border);
}
.hotel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    box-shadow: var(--sh-xs);
}
.hotel-title {
    font-family: var(--f-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
}
.hotel-address {
    font-family: var(--f-body);
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: none;
    font-weight: 900;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}
.hotel-desc {
    font-family: var(--f-body);
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.85;
    font-weight: 300;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.hotel-tag {
    align-self: flex-start;
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: none;
    color: var(--gold);
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    padding: 0.45rem 1.4rem;
    border-radius: var(--rp);
    transition: var(--t2);
}
.hotel-card:hover .hotel-tag {
    background: var(--gold);
    color: var(--cream);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(166,124,49,0.25);
}

/* ── TOURS SECTION ────────────────────────────────────────── */
.about-tours-section {
    padding: 8rem 0;
    background: var(--cream);
}
.tours-detailed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-top: 3.5rem;
}
.tour-detail-card {
    padding: 3.5rem 2.5rem;
    background: var(--cream);
    border: 1px solid var(--b-soft);
    border-radius: var(--r2);
    box-shadow: var(--sh-sm);
    transition: var(--t2);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
}
.tour-detail-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-pale));
    transition: width 0.4s var(--ease);
}
.tour-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-md);
    border-color: var(--gold-border);
}
.tour-detail-card:hover::after {
    width: 100%;
}
.tour-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    box-shadow: var(--sh-xs);
}
.tour-detail-title {
    font-family: var(--f-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
}
.tour-detail-text {
    font-family: var(--f-body);
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 300;
}

/* ── FLEET SECTION ────────────────────────────────────────── */
.about-fleet-section {
    padding: 8rem 0;
    background: var(--cream-alt);
    border-top: 1px solid var(--b-soft);
    border-bottom: 1px solid var(--b-soft);
}
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.fleet-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.fleet-main-title {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
}
.fleet-p {
    font-size: 0.97rem;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.85;
}
.fleet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.fleet-list li {
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.8;
    position: relative;
    padding-left: 1.8rem;
}
.fleet-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: bold;
}
.fleet-list strong {
    color: var(--ink);
    font-weight: 900;
}
.fleet-card {
    padding: 4rem 3.5rem;
    background: var(--cream);
    border: 1px solid var(--b-soft);
    border-radius: var(--r3);
    box-shadow: var(--sh-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.fleet-card-title {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--ink);
}
.fleet-card-desc {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
}
.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.fleet-feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}
.ffi-icon {
    font-size: 1.6rem;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fleet-feature-item h4 {
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 0.3rem;
}
.fleet-feature-item p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.6;
    font-weight: 300;
}

/* ── COMMITMENT SECTION ───────────────────────────────────── */
.about-commitment-section {
    padding: 8rem 0;
    background: var(--cream);
}
.commitment-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 4rem;
    background: var(--cream-alt);
    border: 1px solid var(--b-soft);
    border-radius: var(--r3);
    box-shadow: var(--sh-lg);
}
.commitment-text {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.9;
    font-weight: 300;
    max-width: 760px;
    margin: 2rem auto;
}
.commitment-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.ch-item {
    font-family: var(--f-body);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: none;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.ch-item span {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-story-section .story-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-story-img { height: 360px; }
    .founder-grid { grid-template-columns: 1fr; gap: 4rem; }
    .founder-visual { height: 200px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .hotels-grid { grid-template-columns: 1fr; gap: 2rem; }
    .tours-detailed-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 768px) {
    .about-hero { padding: 8rem 2rem 5rem; }
    .founder-card { padding: 3rem 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 2.5rem 2rem; }
    .tours-detailed-grid { grid-template-columns: 1fr; }
    .commitment-box { padding: 3rem 2rem; }
    .commitment-highlights { gap: 1.5rem; flex-direction: column; align-items: center; }
    .fleet-card { padding: 2.5rem 2rem; }
}
