/* ==========================================================================
   MONAMI CARE - Styly pro podstránky
   Kosmetika, O mně, Fitness, Online kurzy
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page Hero (Podstránky)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.page-hero__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero__text {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Intro Section
   -------------------------------------------------------------------------- */
.intro-section {
    padding: 80px 0;
}

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

.intro-text .lead,
.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray);
}

/* --------------------------------------------------------------------------
   Service Detail (Kosmetika)
   -------------------------------------------------------------------------- */
.service-detail {
    overflow: hidden;
}

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

.service-detail--reverse .service-detail__inner {
    direction: rtl;
}

.service-detail--reverse .service-detail__inner > * {
    direction: ltr;
}

.service-detail__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-detail__content {
    max-width: 520px;
}

.service-detail__number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 16px;
}

.service-detail__title {
    margin-bottom: 20px;
}

.service-detail__text {
    color: var(--gray);
    margin-bottom: 32px;
}

/* Price List */
.price-list {
    margin-bottom: 32px;
}

.price-item {
    display: flex;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item__name {
    font-weight: 500;
    color: var(--black);
}

.price-item__dots {
    flex: 1;
    border-bottom: 2px dotted var(--cream-dark);
    margin: 0 12px;
    min-width: 40px;
}

.price-item__price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-primary);
    white-space: nowrap;
}

.bg-cream {
    background-color: var(--bg-cream);
}

@media (max-width: 1024px) {
    .service-detail__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail--reverse .service-detail__inner {
        direction: ltr;
    }
    
    .service-detail__content {
        max-width: 100%;
    }
}

/* --------------------------------------------------------------------------
   CTA Box
   -------------------------------------------------------------------------- */
.cta-section {
    background: var(--white);
}

.cta-box {
    background: var(--gold-gradient);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-box__title {
    position: relative;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box__text {
    position: relative;
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box__buttons {
    position: relative;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta-box {
        padding: 40px 24px;
    }
}

/* --------------------------------------------------------------------------
   About Intro (O mně)
   -------------------------------------------------------------------------- */
.about-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-intro__image {
    position: relative;
}

.about-intro__image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro__image-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-intro__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-intro__badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.about-intro__badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-intro__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.about-intro__title {
    margin-bottom: 12px;
}

.about-intro__lead {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.about-intro__signature {
    margin-top: 32px;
}

.about-intro__signature img {
    max-height: 60px;
    width: auto;
}

@media (max-width: 1024px) {
    .about-intro__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-intro__image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   Philosophy Section
   -------------------------------------------------------------------------- */
.philosophy__content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy__text p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.philosophy__text .lead {
    font-size: 1.375rem;
    margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   Values Section
   -------------------------------------------------------------------------- */
.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-gold-soft);
    border-radius: 50%;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.value-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card__text {
    font-size: 0.9375rem;
    color: var(--gray);
}

@media (max-width: 1024px) {
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values__grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Certifications Section
   -------------------------------------------------------------------------- */
.certifications__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.certification-item__icon {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.certification-item span {
    font-weight: 500;
    color: var(--gray-dark);
}

@media (max-width: 1024px) {
    .certifications__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .certifications__grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Gallery Section
   -------------------------------------------------------------------------- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* --------------------------------------------------------------------------
   Fitness Cards
   -------------------------------------------------------------------------- */
.fitness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fitness-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.fitness-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fitness-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-gold-soft);
    border-radius: var(--radius-md);
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.fitness-card__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.fitness-card__text {
    color: var(--gray);
    margin-bottom: 20px;
}

.fitness-card__list {
    margin-bottom: 24px;
}

.fitness-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-dark);
    font-size: 0.9375rem;
}

.fitness-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.fitness-card__price {
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
}

.fitness-card__price-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.fitness-card__price-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-primary);
}

@media (max-width: 1024px) {
    .fitness-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   Benefits Section
   -------------------------------------------------------------------------- */
.benefits__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.benefits__title {
    margin-bottom: 20px;
}

.benefits__text {
    color: var(--gray);
    margin-bottom: 32px;
}

.benefits__list {
    display: grid;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-item__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-item__content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-item__content p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin: 0;
}

.benefits__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefits__image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .benefits__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits__image {
        max-width: 400px;
        margin: 0 auto;
        order: -1;
    }
}

/* --------------------------------------------------------------------------
   Packages Section
   -------------------------------------------------------------------------- */
.packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-base);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card--featured {
    background: var(--black);
    color: var(--white);
}

.package-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-card__header {
    margin-bottom: 24px;
}

.package-card__title {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.package-card--featured .package-card__title {
    color: var(--white);
}

.package-card__subtitle {
    font-size: 0.875rem;
    color: var(--gray);
}

.package-card--featured .package-card__subtitle {
    color: var(--gray-light);
}

.package-card__price {
    margin-bottom: 32px;
}

.package-card__price-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.package-card__features {
    text-align: left;
    margin-bottom: 32px;
}

.package-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.9375rem;
}

.package-card--featured .package-card__features li {
    border-color: rgba(255,255,255,0.1);
}

.package-card__features li:last-child {
    border-bottom: none;
}

.package-card__features li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: bold;
}

.package-card .btn {
    width: 100%;
}

@media (max-width: 1024px) {
    .packages__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   Courses Section
   -------------------------------------------------------------------------- */
.courses__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.course-card--featured {
    border: 2px solid var(--gold-primary);
}

.course-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.course-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.course-card:hover .course-card__image img {
    transform: scale(1.05);
}

.course-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-card__badge--new {
    background: #10B981;
}

.course-card__badge--save {
    background: #EF4444;
}

.course-card__content {
    padding: 28px;
}

.course-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.course-card__duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--gray);
}

.course-card__level {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
    background: var(--bg-gold-soft);
    padding: 4px 10px;
    border-radius: 4px;
}

.course-card__title {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.course-card__text {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.course-card__includes {
    margin-bottom: 24px;
}

.course-card__includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.course-card__includes li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: bold;
}

.course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
}

.course-card__price-old {
    font-size: 0.875rem;
    color: var(--gray-light);
    text-decoration: line-through;
    margin-right: 8px;
}

.course-card__price-current {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

@media (max-width: 1024px) {
    .courses__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .courses__grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Steps Section
   -------------------------------------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--cream-dark);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gold-primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 24px;
}

.step__title {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.step__text {
    font-size: 0.9375rem;
    color: var(--gray);
}

@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .steps {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq__question:hover {
    color: var(--gold-primary);
}

.faq__question svg {
    flex-shrink: 0;
    color: var(--gold-primary);
    transition: var(--transition-base);
}

.faq__item.active .faq__question svg {
    transform: rotate(45deg);
}

.faq__answer {
    display: none;
    padding: 0 24px 20px;
}

.faq__item.active .faq__answer {
    display: block;
}

.faq__answer p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   ONLINE KURZY / MASON JAR PAGE STYLES
   Přidat do pages.css
   ===================================================== */

/* Benefits Grid (Mason Jar) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefit-box__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-box__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-box__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Course Card Price Variants */
.course-card__price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.course-card__price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.course-card__badge--sale {
    background: #e74c3c;
    color: #fff;
}

/* Steps Grid - 6 columns variant */
.steps__grid--6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1200px) {
    .steps__grid--6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .steps__grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps__grid--6 {
        grid-template-columns: 1fr;
    }
}

/* For Whom Section */
.for-whom__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .for-whom__grid {
        grid-template-columns: 1fr;
    }
}

.for-whom__card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.for-whom__card:hover {
    transform: translateY(-5px);
}

.for-whom__icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.for-whom__card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.for-whom__card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* What You Get Section */
.what-you-get__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .what-you-get__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .what-you-get__grid {
        grid-template-columns: 1fr;
    }
}

.what-you-get__item {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.what-you-get__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.what-you-get__item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.what-you-get__item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Contact Page Layout */
.contact-page__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-page__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Contact Form Wrapper */
.contact-page__form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.contact-page__form-header {
    margin-bottom: 2rem;
}

.contact-page__form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--black, #1A1A1A);
}

.contact-page__form-header p {
    color: var(--gray, #6B6B6B);
    font-size: 0.95rem;
}

/* Form Styles */
.contact__form .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .contact__form .form__row {
        grid-template-columns: 1fr;
    }
}

.contact__form .form__group {
    margin-bottom: 1.25rem;
}

.contact__form .form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black, #1A1A1A);
    margin-bottom: 0.5rem;
}

.contact__form .form__input,
.contact__form .form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.contact__form .form__input:focus,
.contact__form .form__textarea:focus {
    outline: none;
    border-color: var(--gold-primary, #C9A050);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.1);
}

.contact__form .form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form .form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact__form .form__group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold-primary, #C9A050);
    cursor: pointer;
}

.contact__form .form__group--checkbox label {
    font-size: 0.85rem;
    color: var(--gray, #6B6B6B);
    cursor: pointer;
}

.contact__form .form__group--checkbox a {
    color: var(--gold-primary, #C9A050);
    text-decoration: underline;
}

.contact__form .form__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Contact Info Column */
.contact-page__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact Info Card */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--black, #1A1A1A);
}

/* Contact Info Items */
.contact-info-card__items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream, #FDF8F0);
    border-radius: 12px;
    color: var(--gold-primary, #C9A050);
    flex-shrink: 0;
}

.contact-info-card__content {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
}

.contact-info-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-light, #A0A0A0);
    margin-bottom: 0.25rem;
}

.contact-info-card__value {
    font-size: 1rem;
    color: var(--black, #1A1A1A);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

a.contact-info-card__value:hover {
    color: var(--gold-primary, #C9A050);
}

.contact-info-card__value--small {
    font-size: 0.85rem;
    color: var(--gray, #6B6B6B);
    margin-top: 2px;
}

/* Social Links */
.contact-info-card__social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.contact-info-card__social-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-light, #A0A0A0);
    display: block;
    margin-bottom: 0.75rem;
}

.contact-info-card__social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-info-card__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream, #FDF8F0);
    border-radius: 50%;
    color: var(--black, #1A1A1A);
    transition: all 0.3s ease;
}

.contact-info-card__social-link:hover {
    background: var(--gold-primary, #C9A050);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA Card (Rezervace) */
.contact-info-card--cta {
    background: linear-gradient(135deg, var(--gold-primary, #C9A050) 0%, #d4af61 100%);
    color: #fff;
}

.contact-info-card--cta h3 {
    color: #fff;
}

.contact-info-card--cta p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.contact-info-card--cta .btn--primary {
    background: #fff;
    color: var(--gold-primary, #C9A050);
}

.contact-info-card--cta .btn--primary:hover {
    background: var(--black, #1A1A1A);
    color: #fff;
}

.btn--block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Business Info Section */
.business-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .business-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .business-info__grid {
        grid-template-columns: 1fr;
    }
}

.business-info__card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.business-info__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream, #FDF8F0);
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: var(--gold-primary, #C9A050);
}

.business-info__card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-light, #A0A0A0);
    margin-bottom: 0.5rem;
}

.business-info__card p {
    font-size: 1rem;
    color: var(--black, #1A1A1A);
    margin: 0;
    line-height: 1.5;
}

.business-info__note {
    font-size: 0.85rem !important;
    color: var(--gray, #6B6B6B) !important;
    margin-top: 0.25rem !important;
}

/* Map Section */
.map-section__header {
    background: var(--black, #1A1A1A);
    color: #fff;
    padding: 3rem 0;
}

.map-section__content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}

.map-section__content p {
    opacity: 0.8;
    max-width: 500px;
    margin: 0;
}

.map-section__map {
    height: 450px;
}

.map-section__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-section__map {
        height: 350px;
    }
}

/* =====================================================
   STEPS GRID (Mason Jar)
   ===================================================== */

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps__grid {
        grid-template-columns: 1fr;
    }
}

/* Steps Grid - 6 columns variant */
.steps__grid.steps__grid--6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1200px) {
    .steps__grid.steps__grid--6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .steps__grid.steps__grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps__grid.steps__grid--6 {
        grid-template-columns: 1fr;
    }
}

/* Step Card */
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary, #C9A050) 0%, #d4af61 100%);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.step-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--black, #1A1A1A);
}

.step-card__text {
    font-size: 0.9rem;
    color: var(--gray, #6B6B6B);
    line-height: 1.6;
    margin: 0;
}

/* Step card in cream background sections */
.bg-cream .step-card {
    background: #fff;
}

/* =====================================================
   FORM MESSAGES
   ===================================================== */

.form__message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form__message--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form__message--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Form row for contact forms */
.contact__form .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .contact__form .form__row {
        grid-template-columns: 1fr;
    }
}

.contact__form .form__group {
    margin-bottom: 1.25rem;
}

.contact__form .form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black, #1A1A1A);
    margin-bottom: 0.5rem;
}

.contact__form .form__input,
.contact__form .form__textarea,
.contact__form select.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact__form select.form__input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact__form .form__input:focus,
.contact__form .form__textarea:focus,
.contact__form select.form__input:focus {
    outline: none;
    border-color: var(--gold-primary, #C9A050);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.1);
}

.contact__form .form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form .form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact__form .form__group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--gold-primary, #C9A050);
    cursor: pointer;
}

.contact__form .form__group--checkbox label {
    font-size: 0.85rem;
    color: var(--gray, #6B6B6B);
    cursor: pointer;
}

.contact__form .form__group--checkbox a {
    color: var(--gold-primary, #C9A050);
    text-decoration: underline;
}

.contact__form .form__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* =====================================================
   THANK YOU PAGE
   ===================================================== */

.thank-you {
    padding: 6rem 0;
}

.thank-you__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thank-you__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.1) 0%, rgba(201, 160, 80, 0.05) 100%);
    border-radius: 50%;
}

.thank-you__icon svg {
    color: var(--gold-primary, #C9A050);
}

.thank-you__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--black, #1A1A1A);
    margin-bottom: 1.5rem;
}

.thank-you__text {
    font-size: 1.1rem;
    color: var(--gray, #6B6B6B);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thank-you__text--small {
    font-size: 0.95rem;
    color: #999;
}

.thank-you__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.thank-you__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Thank You Social */
.thank-you-social__inner {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-social__inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.thank-you-social__inner p {
    color: var(--gray, #6B6B6B);
    margin-bottom: 2rem;
}

.thank-you-social__links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.thank-you-social__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    color: var(--black, #1A1A1A);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.thank-you-social__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    color: var(--gold-primary, #C9A050);
}

.thank-you-social__link svg {
    transition: color 0.3s ease;
}

.thank-you-social__link:hover svg {
    color: var(--gold-primary, #C9A050);
}

@media (max-width: 480px) {
    .thank-you-social__links {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-social__link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* =====================================================
   ABOUT TEASER SECTION (Homepage)
   ===================================================== */

.about-teaser__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-teaser__image {
    position: relative;
}

.about-teaser__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-teaser__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-primary, #C9A050);
    border-radius: 12px;
    z-index: -1;
}

.about-teaser__content {
    padding: 1rem 0;
}

.about-teaser__subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary, #C9A050);
    margin-bottom: 1rem;
}

.about-teaser__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--black, #1A1A1A);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-teaser__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray, #6B6B6B);
    margin-bottom: 1rem;
}

.about-teaser__text:last-of-type {
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .about-teaser__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-teaser__image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-teaser__image::before {
        top: -15px;
        left: -15px;
    }
    
    .about-teaser__content {
        text-align: center;
    }
}

/* ============================================
   GDPR / Ochrana osobních údajů
   ============================================ */

.page-hero--simple {
    background: var(--cream, #F9F5ED);
    padding: 4rem 0;
    text-align: center;
}

.page-hero--simple .page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark, #1A1A1A);
    margin-bottom: 0.5rem;
}

.page-hero--simple .page-hero__text {
    font-size: 1.1rem;
    color: var(--gray, #6B6B6B);
}

.gdpr-content {
    padding: 4rem 0;
}

.gdpr-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.gdpr-content__intro {
    margin-bottom: 3rem;
}

.gdpr-content__intro h2 {
    font-size: 1.5rem;
    color: var(--dark, #1A1A1A);
    margin-bottom: 1.5rem;
}

.gdpr-content__intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray, #6B6B6B);
    margin-bottom: 1rem;
}

.gdpr-content__card {
    background: var(--cream, #F9F5ED);
    border-left: 4px solid var(--gold-primary, #C9A050);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.gdpr-content__card p {
    margin-bottom: 0.5rem;
    color: var(--dark, #1A1A1A);
}

.gdpr-content__card p:last-child {
    margin-bottom: 0;
}

.gdpr-content__card a {
    color: var(--gold-primary, #C9A050);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gdpr-content__card a:hover {
    color: var(--gold-dark, #A8843F);
    text-decoration: underline;
}

.gdpr-content__note {
    font-style: italic;
    color: var(--gray, #6B6B6B) !important;
    margin-top: 0.5rem !important;
}

.gdpr-content__section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.gdpr-content__section:last-of-type {
    border-bottom: none;
}

.gdpr-content__section h3 {
    font-size: 1.25rem;
    color: var(--dark, #1A1A1A);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-primary, #C9A050);
    display: inline-block;
}

.gdpr-content__section h4 {
    font-size: 1.1rem;
    color: var(--dark, #1A1A1A);
    margin: 1.5rem 0 0.75rem;
}

.gdpr-content__section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray, #6B6B6B);
    margin-bottom: 1rem;
}

.gdpr-content__section ul {
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
}

.gdpr-content__section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray, #6B6B6B);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.gdpr-content__section li::marker {
    color: var(--gold-primary, #C9A050);
}

.gdpr-content__section a {
    color: var(--gold-primary, #C9A050);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gdpr-content__section a:hover {
    color: var(--gold-dark, #A8843F);
    text-decoration: underline;
}

.gdpr-content__footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gold-primary, #C9A050);
    text-align: center;
}

.gdpr-content__footer p {
    font-size: 0.95rem;
    color: var(--dark, #1A1A1A);
}

@media (max-width: 768px) {
    .gdpr-content__card {
        padding: 1rem 1.5rem;
    }
    
    .gdpr-content__section h3 {
        font-size: 1.15rem;
    }
}

/* ============================================
   Homepage Contact Form Wrapper
   ============================================ */

.contact__form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact__form-header {
    margin-bottom: 1.5rem;
}

.contact__form-header h3 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--dark, #1A1A1A);
    margin-bottom: 0.5rem;
}

.contact__form-header p {
    font-size: 0.95rem;
    color: var(--gray, #6B6B6B);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact__form-wrapper {
        padding: 1.5rem;
    }
    
    .contact__form-header h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Homepage Contact Section Layout
   ============================================ */

.contact.section {
    background: var(--cream, #F9F5ED);
    padding: 5rem 0;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    padding-right: 2rem;
}

.contact__subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary, #C9A050);
    margin-bottom: 0.75rem;
}

.contact__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--dark, #1A1A1A);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray, #6B6B6B);
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact__item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 160, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__item-icon svg {
    stroke: var(--gold-primary, #C9A050);
}

.contact__item-content {
    display: flex;
    flex-direction: column;
}

.contact__item-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold-primary, #C9A050);
    margin-bottom: 0.25rem;
}

.contact__item-value {
    font-size: 1rem;
    color: var(--dark, #1A1A1A);
}

.contact__item-value a {
    color: var(--dark, #1A1A1A);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact__item-value a:hover {
    color: var(--gold-primary, #C9A050);
}

.contact__social {
    display: flex;
    gap: 0.75rem;
}

.contact__social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-primary, #C9A050);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.contact__social-link:hover {
    background: var(--gold-dark, #A8843F);
    transform: translateY(-3px);
}

.contact__social-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 992px) {
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact__info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact__details {
        align-items: center;
    }
    
    .contact__item {
        justify-content: center;
    }
    
    .contact__social {
        justify-content: center;
    }
}
