/* ========================================
   COREODIN — styles.css
   ======================================== */

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   Shared
   ======================================== */

.section-label {
    color: #555;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ========================================
   Nav
   ======================================== */

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px;
    border-bottom: 1px solid #1a1a1a;
}

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: #666;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #fff;
}

.nav-link-active {
    color: #fff;
}

/* ========================================
   Hero (Homepage)
   ======================================== */

.hero {
    display: flex;
    min-height: 85vh;
    padding: 0 48px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px;
}

.hero-left .section-label {
    margin-bottom: 32px;
}

.hero-title {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: -1.5px;
    line-height: 1.12;
}

.hero-subtitle {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 28px;
    max-width: 440px;
}

.hero-divider {
    width: 1px;
    background: #1a1a1a;
    align-self: stretch;
    margin: 80px 0;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
    gap: 40px;
}

.hero-service {
    display: flex;
    flex-direction: column;
}

.hero-service-num {
    color: #555;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.hero-service-title {
    color: #999;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.hero-service:hover .hero-service-title {
    color: #fff;
}

.hero-service-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #2a2a2a;
    margin-top: 12px;
    transition: background 0.3s;
}

.hero-service:hover .hero-service-line {
    background: #444;
}

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */

.page-hero {
    padding: 120px 48px 80px;
    border-bottom: 1px solid #1a1a1a;
}

.page-hero .section-label {
    margin-bottom: 32px;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.page-hero-subtitle {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 24px;
    max-width: 640px;
}

.page-hero-breadcrumb {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-link {
    color: #555;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: #fff;
}

.breadcrumb-sep {
    color: #333;
    font-size: 12px;
}

.breadcrumb-current {
    color: #888;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ========================================
   Services (Homepage)
   ======================================== */

.services {
    padding: 120px 48px;
    border-top: 1px solid #1a1a1a;
}

.services .section-label {
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: #1a1a1a;
}

.service-card {
    background: #0a0a0a;
    padding: 48px 40px;
}

.service-card-num {
    color: #2a2a2a;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.service-card-title {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
}

.service-card-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   Services List (services.html)
   ======================================== */

.services-list {
    padding: 0 48px;
}

.services-list-item {
    display: flex;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid #1a1a1a;
    text-decoration: none;
    transition: background 0.3s;
    gap: 40px;
}

.services-list-item:hover {
    background: #0e0e0e;
}

.services-list-num {
    color: #333;
    font-size: 14px;
    letter-spacing: 3px;
    min-width: 40px;
}

.services-list-content {
    flex: 1;
}

.services-list-title {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.services-list-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    max-width: 520px;
}

.services-list-arrow {
    color: #333;
    font-size: 20px;
    transition: color 0.3s;
}

.services-list-item:hover .services-list-arrow {
    color: #fff;
}

/* ========================================
   Services CTA
   ======================================== */

.services-cta {
    padding: 120px 48px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.services-cta-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.services-cta-text {
    color: #555;
    font-size: 15px;
    margin-bottom: 32px;
}

.services-cta-link {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s;
}

.services-cta-link:hover {
    color: #888;
}

/* ========================================
   Service Detail (Individual Pages)
   ======================================== */

.service-detail {
    padding: 100px 48px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #1a1a1a;
}

.service-detail-card {
    background: #0a0a0a;
    padding: 48px 40px;
}

.service-detail-card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-detail-card-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   Service Philosophy
   ======================================== */

.service-philosophy {
    padding: 100px 48px;
    border-top: 1px solid #1a1a1a;
}

.service-philosophy-inner {
    max-width: 800px;
}

.service-philosophy-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.service-philosophy-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* ========================================
   Service Bottom Nav
   ======================================== */

.service-nav-bottom {
    display: flex;
    justify-content: space-between;
    padding: 32px 48px;
    border-top: 1px solid #1a1a1a;
}

.service-nav-back,
.service-nav-next {
    color: #555;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
}

.service-nav-back:hover,
.service-nav-next:hover {
    color: #fff;
}

/* ========================================
   Philosophy (Homepage)
   ======================================== */

.philosophy {
    display: flex;
    gap: 80px;
    padding: 120px 48px;
    border-top: 1px solid #1a1a1a;
}

.philosophy-left {
    flex: 1;
}

.philosophy-left .section-label {
    margin-bottom: 32px;
}

.philosophy-title {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.philosophy-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* ========================================
   Numbers
   ======================================== */

.numbers {
    display: flex;
    justify-content: space-between;
    padding: 100px 48px;
    border-top: 1px solid #1a1a1a;
}

.number-item {
    text-align: center;
    flex: 1;
}

.number-value {
    color: #fff;
    font-size: 36px;
    font-weight: 200;
    letter-spacing: -1px;
}

.number-label {
    color: #555;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* ========================================
   About (Homepage)
   ======================================== */

.about {
    padding: 120px 48px;
    border-top: 1px solid #1a1a1a;
}

.about-content {
    max-width: 640px;
}

.about .section-label {
    margin-bottom: 32px;
}

.about-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
}

.about-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.about-meta {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.about-meta-label {
    color: #555;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-meta-value {
    color: #888;
    font-size: 14px;
}

/* ========================================
   About Story (about.html)
   ======================================== */

.about-story {
    padding: 100px 48px;
}

.about-story-split {
    display: flex;
    gap: 80px;
}

.about-story-left {
    flex: 1;
}

.about-story-heading {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.about-story-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.about-story-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* ========================================
   About Values
   ======================================== */

.about-values {
    padding: 100px 48px;
    border-top: 1px solid #1a1a1a;
}

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

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: #1a1a1a;
}

.about-value-item {
    background: #0a0a0a;
    padding: 48px 40px;
}

.about-value-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-value-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   About Facts
   ======================================== */

.about-facts {
    padding: 80px 48px;
    border-top: 1px solid #1a1a1a;
}

.about-facts-grid {
    display: flex;
    gap: 64px;
}

.about-fact-item {
    flex: 1;
}

.about-fact-label {
    color: #555;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-fact-value {
    color: #888;
    font-size: 15px;
}

/* ========================================
   Contact (Homepage)
   ======================================== */

.contact {
    padding: 120px 48px;
    border-top: 1px solid #1a1a1a;
}

.contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.contact .section-label {
    margin-bottom: 32px;
}

.contact-title {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.contact-right {
    text-align: right;
}

.contact-email {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email:hover {
    color: #888;
}

/* ========================================
   Contact Page (contact.html)
   ======================================== */

.contact-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 48px;
}

.contact-page-inner {
    display: flex;
    width: 100%;
    gap: 80px;
}

.contact-page-left {
    flex: 1;
}

.contact-page-left .section-label {
    margin-bottom: 32px;
}

.contact-page-title {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-page-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.contact-page-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
}

.contact-page-email-label {
    color: #555;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-page-email {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-page-email:hover {
    color: #888;
}

.contact-page-meta-block {
    display: flex;
    gap: 48px;
}

.contact-page-meta-label {
    color: #555;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-page-meta-value {
    color: #888;
    font-size: 14px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px;
    border-top: 1px solid #1a1a1a;
}

.footer-logo {
    color: #333;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-copy {
    color: #333;
    font-size: 11px;
    letter-spacing: 1px;
}
