/* DC Concept - Landing Page
   Brand colors:
   Brown: #706b5c
   Tan: #dac2ad
   Cream: #f8f5f1
   Dark: #1a1917
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #706b5c;
    --accent-dark: #5a5549;
    --brown: #706b5c;
    --tan: #dac2ad;
    --cream: #f8f5f1;
    --dark: #1a1917;
    --text: #2c2a26;
    --text-light: #5c5850;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Typography */

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -0.02em;
}

h1 em {
    font-style: italic;
    color: var(--accent);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brown);
    margin-bottom: 1rem;
}

.label--light {
    color: var(--tan);
}

.label--center {
    text-align: center;
}

.heading--center {
    text-align: center;
}

/* Layout */

.section {
    padding: 5rem 1.5rem;
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-inner--narrow {
    max-width: 600px;
}

.section-inner--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section--cream {
    background: var(--cream);
}

.section--dark {
    background: var(--dark);
    color: #fff;
}

.heading--light {
    color: #fff;
}

.text-block {
    font-size: 1.05rem;
    color: var(--text-light);
}

.text-block p + p {
    margin-top: 1.2rem;
}

/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-img--footer {
    height: 60px;
    filter: brightness(0) invert(1);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--text);
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: var(--text);
    color: #fff;
}

/* Hero */

.hero {
    padding: 9rem 1.5rem 5rem;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-inner--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 1.5rem 0 2rem;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--brown);
    font-style: italic;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.section-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* Image Placeholders */

.image-placeholder {
    background: linear-gradient(135deg, var(--tan) 0%, #c4b098 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    aspect-ratio: 4/3;
}

.image-placeholder::after {
    content: attr(data-placeholder);
    opacity: 0.7;
}

.image-placeholder--landscape {
    aspect-ratio: 16/10;
}

.image-placeholder--portrait {
    aspect-ratio: 3/4;
}

.image-placeholder--featured {
    aspect-ratio: 16/9;
}

/* Video Section */

.section--video {
    padding: 3rem 1.5rem 5rem;
    background: #fff;
}

.section--video .section-inner--narrow {
    margin-bottom: 2rem;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.video-cta {
    max-width: 800px;
    margin: 2.5rem auto 0;
    text-align: center;
}

.video-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Gallery */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
}

.gallery-caption {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Button */

.btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: var(--accent);
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn:hover {
    background: var(--accent-dark);
}

.btn--full {
    width: 100%;
    text-align: center;
}

.btn--light {
    background: #fff;
    color: var(--accent);
}

.btn--light:hover {
    background: var(--cream);
}

/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
    margin-top: 2.5rem;
}

.service {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-icon {
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.service-icon svg {
    display: block;
}

.service h3 {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    margin-bottom: 0;
}

.service p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Timeline */

.timeline {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-days {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--tan);
    width: 80px;
    flex-shrink: 0;
}

.timeline-task {
    color: rgba(255, 255, 255, 0.85);
}

/* About Section */

.section-inner--about {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-text .btn {
    margin-top: 1.5rem;
}

/* FAQ */

.faq {
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Final CTA Section */

.section--cta {
    background: var(--accent);
    color: #fff;
    text-align: center;
}

.section--cta h2 {
    color: #fff;
}

.section--cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

/* Footer */

.footer {
    padding: 3rem 1.5rem;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo--footer {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer--minimal {
    padding: 2rem 1.5rem;
}

/* ==========================================
   BOOKING PAGE
   ========================================== */

.booking-section {
    min-height: 100vh;
    padding: 7rem 1.5rem 3rem;
    background: var(--cream);
}

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.booking-intro {
    position: sticky;
    top: 100px;
}

.booking-intro h1 {
    margin-bottom: 1rem;
}

.booking-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.booking-list {
    list-style: none;
    color: var(--text-light);
}

.booking-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.booking-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.booking-calendar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    min-height: 600px;
    overflow: hidden;
}

#my-cal-inline-30min {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 900px) {
    html {
        font-size: 17px;
    }

    .hero-inner--split,
    .section-inner--split,
    .section-inner--about,
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero {
        padding: 8rem 1.25rem 4rem;
    }

    .hero-image {
        order: -1;
    }

    .about-image {
        position: static;
        max-width: 280px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .booking-intro {
        position: static;
    }
}

@media (max-width: 700px) {
    html {
        font-size: 16px;
    }

    .section {
        padding: 3.5rem 1.25rem;
    }

    .logo-img {
        height: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.3rem;
    }

    .timeline-days {
        width: auto;
    }
}
