/* ==========================================================================
   Devine Tiles — About Page Styles
   ========================================================================== */

/* About Grid (Story section) */
.dt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.dt-about-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dt-gray);
}
.dt-about-content p { margin: 0 0 20px; }
.dt-about-content p:last-child { margin-bottom: 0; }
.dt-about-image { position: relative; }
.dt-about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--dt-radius-lg);
}
.dt-about-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--dt-primary);
    border-radius: var(--dt-radius);
    opacity: .15;
    pointer-events: none;
}

/* Stats */
.dt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.dt-stat__number {
    font-family: var(--dt-font-heading);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    color: var(--dt-white);
    line-height: 1;
    margin-bottom: 8px;
}
.dt-stat__number span {
    color: var(--dt-primary);
    font-size: .55em;
    vertical-align: super;
}
.dt-stat__label {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    font-weight: 400;
}

/* Showroom */
.dt-showroom-details {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.dt-showroom-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dt-showroom-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.dt-showroom-info__item svg {
    width: 22px;
    height: 22px;
    stroke: var(--dt-primary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}
.dt-showroom-info__item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dt-black);
    margin-bottom: 4px;
}
.dt-showroom-info__item p {
    font-size: 14.5px;
    color: var(--dt-gray);
    margin: 0;
    line-height: 1.6;
}
.dt-showroom-info__item a {
    color: var(--dt-primary);
    text-decoration: none;
    font-weight: 500;
}
.dt-showroom-info__item a:hover { text-decoration: underline; }
.dt-showroom-map {
    border-radius: var(--dt-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dt-border);
}
.dt-showroom-map iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    filter: grayscale(20%);
    transition: filter .3s;
}
.dt-showroom-map iframe:hover { filter: grayscale(0%); }

/* Responsive */
@media (max-width: 1024px) {
    .dt-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .dt-about-image { order: -1; }
    .dt-about-image img { height: 350px; }
    .dt-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .dt-showroom-details { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .dt-stats-grid { grid-template-columns: 1fr 1fr; }
    .dt-about-image::after { display: none; }
    .dt-about-image img { height: 260px; }
}
