/* ========================================
   ABOUT US PAGE — Elegant Gold-First
   ======================================== */

/* ── HERO ── */
#about-hero {
    position: relative;
    height: calc(100vh - 88px);
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 9, 8, 0.82) 0%,
        rgba(10, 9, 8, 0.5) 60%,
        rgba(10, 9, 8, 0.15) 100%
    );
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 80px 80px;
    max-width: 640px;
}

.about-hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 20px;
}

#about-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 300;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

#about-hero h1 em {
    font-style: italic;
    color: #C9A96E;
}

#about-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.about-hero-scroll {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 2;
}

.about-hero-scroll span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #C9A96E, transparent);
    margin: 0 auto;
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── MISSION ── */
#about-mission {
    padding: 100px 0;
    background: #fff;
}

.mission-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-line {
    width: 48px;
    height: 1px;
    background: #C9A96E;
    margin: 0 auto 36px;
}

.mission-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    font-style: italic;
    color: #111110;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    border: none;
    padding: 0;
}

.mission-attr {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A96E;
    margin: 0;
}

/* ── STATS ── */
#about-stats {
    padding: 60px 0;
    background: #111110;
    border-top: 1px solid rgba(201,169,110,0.15);
    border-bottom: 1px solid rgba(201,169,110,0.15);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stats-grid .stat-item {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
}

.stats-grid .stat-num {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: #C9A96E;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-grid .stat-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.stats-grid .stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(201,169,110,0.2);
    flex-shrink: 0;
}

/* ── STORY ── */
#about-story {
    padding: 120px 0;
    background: #FAFAF7;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-img-wrap {
    position: relative;
}

.story-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.story-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 4px;
    z-index: 0;
}

.story-text-col .section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 16px;
}

.story-text-col h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: #111110;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.story-text-col p {
    font-size: 15px;
    color: #6b6560;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 18px;
}

.story-cta { margin-top: 32px; }

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: transparent;
    border: 1px solid #C9A96E;
    color: #C9A96E;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.25s;
}

.btn-gold:hover {
    background: #C9A96E;
    color: #fff;
}

/* ── MISSION & VISION ── */
#about-mission-section {
    padding: 100px 0;
    background: #111110;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.mv-block {
    padding: 0 60px;
}

.mv-block:first-child { padding-left: 0; }
.mv-block:last-child  { padding-right: 0; }

.mv-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201,169,110,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A96E;
    font-size: 16px;
    margin-bottom: 20px;
}

#about-mission-section .section-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 10px;
    display: block;
}

.mv-block h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.mv-block p {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
}

.mv-divider {
    width: 1px;
    background: rgba(201,169,110,0.15);
    align-self: stretch;
    min-height: 200px;
}

/* ── VALUES LIST ── */
#about-values-list {
    padding: 100px 0;
    background: #fff;
}

.vl-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.vl-left .section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 14px;
}

.vl-left h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: #111110;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.vl-left > p {
    font-size: 14px;
    color: #6b6560;
    line-height: 1.8;
    font-weight: 300;
}

.vl-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vl-list li {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    align-items: flex-start;
}

.vl-list li:first-child { padding-top: 0; }
.vl-list li:last-child  { border-bottom: none; padding-bottom: 0; }

.vl-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(201,169,110,0.5);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    margin-top: 2px;
    width: 22px;
}

.vl-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111110;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.vl-text p {
    font-size: 13px;
    color: #7a7570;
    line-height: 1.75;
    margin: 0;
    font-weight: 300;
}

/* ── DIFFERENTIATOR ── */
#about-diff {
    padding: 100px 0;
    background: #FAFAF7;
    border-top: 1px solid rgba(201,169,110,0.1);
}

.diff-inner {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: start;
}

.diff-label .section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 14px;
}

.diff-label h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: #111110;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.diff-text p {
    font-size: 15px;
    color: #6b6560;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 18px;
}

.diff-text strong {
    color: #111110;
    font-weight: 600;
}

.diff-text .btn-gold {
    margin-top: 12px;
}

/* ── VALUES ── */
#about-values {
    padding: 120px 0;
    background: #fff;
}

#about-values .section-header {
    margin-bottom: 64px;
}

#about-values .section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 14px;
}

#about-values h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: #111110;
    letter-spacing: -0.02em;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(201,169,110,0.12);
}

.value-card {
    background: #fff;
    padding: 52px 40px;
    position: relative;
    transition: background 0.3s;
}

.value-card:hover { background: #FAFAF7; }

.value-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(201,169,110,0.5);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.value-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,169,110,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A96E;
    font-size: 16px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #111110;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 14px;
    color: #7a7570;
    line-height: 1.75;
    margin: 0;
    font-weight: 300;
}

/* ── SERVICES ── */
#about-services {
    padding: 120px 0;
    background: #111110;
}

#about-services .section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.7);
    margin-bottom: 14px;
}

#about-services h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    height: 400px;
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img { transform: scale(1.04); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.3) 60%, transparent 100%);
    transition: background 0.3s;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(10,9,8,0.96) 0%, rgba(10,9,8,0.5) 70%, rgba(10,9,8,0.1) 100%);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 2;
}

.service-num {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #C9A96E;
    margin-bottom: 8px;
}

.service-card-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.service-card-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0 0 14px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-card-content p {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A96E;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── WHY COAST ── */
#about-why {
    padding: 120px 0;
    background: #FAFAF7;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text .section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 16px;
}

.why-text h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: #111110;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.why-text > p {
    font-size: 15px;
    color: #6b6560;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #444;
    font-weight: 300;
}

.why-list li i {
    width: 24px;
    height: 24px;
    background: rgba(201,169,110,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A96E;
    font-size: 10px;
    flex-shrink: 0;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.why-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: #fff;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.why-badge i {
    font-size: 20px;
    color: #C9A96E;
}

.why-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #111110;
    line-height: 1.4;
}

/* ── CTA ── */
#about-cta {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, 0.78);
    z-index: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-cta-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.about-cta-content > p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gold-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(135deg, #C9A96E 0%, #A8863E 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 8px 28px rgba(201,169,110,0.35);
    transition: opacity 0.2s, transform 0.2s;
}

.btn-gold-solid:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #fff;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
    border-color: #C9A96E;
    color: #C9A96E;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { height: 340px; }
}

@media (max-width: 991px) {
    .about-hero-content { padding: 0 0 60px 40px; }
    .mv-grid { grid-template-columns: 1fr; gap: 0; }
    .mv-block { padding: 40px 0; border-bottom: 1px solid rgba(201,169,110,0.12); }
    .mv-block:last-child { border-bottom: none; }
    .mv-divider { display: none; }
    .vl-grid, .diff-inner { grid-template-columns: 1fr; gap: 48px; }
    .story-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .story-img-wrap img, .why-image img { height: 380px; }
    .story-image-col { order: 2; }
    .story-text-col  { order: 1; }
    .values-grid { grid-template-columns: 1fr; gap: 2px; }
    .stats-grid { flex-wrap: wrap; }
    .stats-grid .stat-item { flex: 0 0 45%; }
    .stats-grid .stat-divider { display: none; }
    .why-badge { left: 0; }
}

@media (max-width: 767px) {
    #about-hero { height: 80vh; }
    .about-hero-content { padding: 0 24px 48px; }
    #about-hero h1 { font-size: 40px; }
    #about-mission, #about-story, #about-values, #about-why { padding: 80px 0; }
    #about-services { padding: 80px 0; }
    #about-cta { padding: 100px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 12px; }
    .service-card { height: 280px; }
    .stats-grid .stat-item { flex: 0 0 100%; padding: 20px; }
    .value-card { padding: 36px 28px; }
}
