.page-hero {
    background: #0f172a;
    padding: 7rem 1.5rem 7rem;
    text-align: center;
}

.page-hero__label {
    color: #f59e0b;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.page-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    font-weight: 600;
}

.page-hero__description {
    color: #9ca3af;
    font-size: 1rem;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .elegant-separator {
    margin-top: 2rem;
}

.section-padding {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 4rem;
    }
}

.content-grid {
    max-width: 1280px;
    margin: 0 auto;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section {
    background: #0f172a;
    padding: 6rem 1.5rem;
    text-align: center;
}

.cta-section__label {
    color: #f59e0b;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.75rem);
    color: #fff;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.cta-section__text {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0 6rem;
}

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

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-label {
    color: #D97706;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.post-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #0f172a;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.post-card:hover .post-card__title {
    color: #D97706;
}

.post-card__title a {
    color: inherit;
    text-decoration: none;
}

.post-card__excerpt {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0f172a;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card__link:hover {
    color: #D97706;
}

.post-card__link i {
    font-size: 0.625rem;
    transition: transform 0.3s ease;
}

.post-card__link:hover i {
    transform: translateX(4px);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.service-detail-grid__image {
    overflow: hidden;
}

.service-detail-grid__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .service-detail-grid__image img {
        height: 650px;
    }
}

.service-detail-grid__content {
    position: relative;
}

.service-detail-grid__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(217, 119, 6, 0.15);
    line-height: 1;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
}

@media (min-width: 768px) {
    .service-detail-grid__number {
        font-size: 6rem;
    }
}

.service-detail-grid__inner {
    position: relative;
    z-index: 10;
    padding-top: 2.5rem;
}

.service-detail-grid__label {
    color: #D97706;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-detail-grid__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-grid__text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-grid__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.service-detail-grid__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.service-detail-grid__list i {
    color: #D97706;
    font-size: 0.75rem;
}

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

.info-card__icon {
    width: 40px;
    height: 40px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card__icon i {
    color: #D97706;
    font-size: 0.875rem;
}

.info-card__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.info-card__value {
    color: #4b5563;
    font-size: 0.875rem;
}

.info-card__value a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card__value a:hover {
    color: #D97706;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-grid--full {
    grid-column: 1 / -1;
}

.contact-form__label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.contact-form__submit {
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.contact-form__note {
    color: #9ca3af;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.5rem;
}

.contact-section {
    background: #FDFBF7;
    padding: 6rem 1.5rem 10rem;
}

@media (min-width: 1024px) {
    .contact-section__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.single-post-header {
    background: #0f172a;
    padding: 7rem 1.5rem;
    text-align: center;
}

.single-post-header__category {
    color: #f59e0b;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
}

.single-post-header__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.single-post-header__meta {
    color: #9ca3af;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.single-post-header__meta a {
    color: #f59e0b;
    text-decoration: none;
}

.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.archive-section {
    background: #FDFBF7;
    padding: 4rem 1.5rem 6rem;
}

.pagination-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.pagination-wrapper .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: #374151;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers.current {
    background: #D97706;
    color: #fff;
    border-color: #D97706;
}

.pagination-wrapper .page-numbers:hover {
    background: #D97706;
    color: #fff;
    border-color: #D97706;
}

.post-navigation {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
}

.post-navigation a {
    color: #0f172a;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    max-width: 45%;
}

.post-navigation a:hover {
    color: #D97706;
}

.comments-area-wrapper {
    background: #FDFBF7;
}

.error-404-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    padding: 4rem 2rem;
    text-align: center;
}

.error-404__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: rgba(217, 119, 6, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

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

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

.product-thumb {
    display: block;
    text-align: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.3s ease, opacity 0.3s;
    opacity: 0.6;
}

.product-thumb:hover {
    opacity: 1;
    border-color: #D97706;
}

.product-thumb i {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
    display: block;
}

.product-thumb span {
    font-size: 0.75rem;
    color: #0f172a;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-section {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.product-section:target {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

:target {
    scroll-margin-top: 100px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.product-detail-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .product-detail-grid img {
        height: 500px;
    }
}

.breadcrumbs {
    color: #9ca3af;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #f59e0b;
}

.breadcrumbs .current {
    color: #f59e0b;
}

.breadcrumbs .separator {
    margin: 0 0.75rem;
}

.default-placeholder {
    text-align: center;
    padding: 4rem 0;
    color: #9ca3af;
}

.default-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: rgba(217, 119, 6, 0.3);
}

.default-placeholder p {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.no-results-section {
    padding: 6rem 2rem;
    text-align: center;
    background: #FDFBF7;
}

.no-results-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.no-results-section p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.entry-content {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

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

@media (min-width: 768px) {
    .services-grid-front {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .services-grid-front {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-md {
    display: none;
}

@media (min-width: 768px) {
    .hidden-md {
        display: inline;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
