/* ============================================================
   HIKARI Studio — Page-specific Styles
   ============================================================ */

/* ============================================================
   Hero
============================================================ */
.hs-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--hs-bg-dark) url('../images/hero-bg.jpg') center / cover no-repeat;
}

.hs-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 165, 116, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(140, 100, 60, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.55) 100%);
    z-index: 1;
}

.hs-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hs-hero__subtitle {
    font-family: var(--hs-font-serif);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--hs-accent);
    margin-bottom: 24px;
}

.hs-hero__heading {
    font-family: var(--hs-font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--hs-text-light);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hs-hero__lead {
    font-size: 0.9375rem;
    color: var(--hs-text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 48px;
    line-height: 1.8;
}

.hs-hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hs-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hs-hero__scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--hs-accent), transparent);
    animation: hs-scroll-line 2s ease-in-out infinite;
}

@keyframes hs-scroll-line {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   About
============================================================ */
.hs-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hs-about__image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: 70% center;
    display: block;
}

.hs-about__image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background:
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 30%, #1a1a1a 60%, #2a2020 100%);
    position: relative;
    overflow: hidden;
}

.hs-about__image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 40% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
}

.hs-about__image-placeholder::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    border-right: 1px solid var(--hs-accent);
    border-bottom: 1px solid var(--hs-accent);
}

/* ============================================================
   Gallery Preview (Front page)
============================================================ */
.hs-gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 8px;
}

.hs-gallery-preview__item {
    position: relative;
    overflow: hidden;
    background: var(--gradient, linear-gradient(135deg, #1a1a1a, #2a2a2a));
    cursor: pointer;
}

.hs-gallery-preview__item--tall {
    grid-row: span 2;
}

.hs-gallery-preview__item--wide {
    grid-column: span 2;
}

.hs-gallery-preview__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--hs-transition);
}

.hs-gallery-preview__overlay span {
    font-family: var(--hs-font-serif);
    font-size: 1.125rem;
    letter-spacing: 0.15em;
    color: var(--hs-text-light);
    border-bottom: 1px solid var(--hs-accent);
    padding-bottom: 4px;
}

.hs-gallery-preview__item:hover .hs-gallery-preview__overlay {
    opacity: 1;
}

.hs-gallery-preview__item:hover {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

/* ============================================================
   Horizontal Gallery Scroll (GSAP-powered)
============================================================ */
.hs-gallery-horizontal {
    background: var(--hs-bg-mid);
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
}

.hs-gallery-horizontal__track {
    display: flex;
    gap: 24px;
    padding: 0 48px;
    will-change: transform;
}

.hs-gallery-horizontal__item {
    flex-shrink: 0;
    width: 420px;
    height: 540px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hs-gallery-horizontal__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hs-gallery-horizontal__item:hover::after {
    opacity: 1;
}

.hs-gallery-horizontal__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 32px 28px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hs-gallery-horizontal__item:hover .hs-gallery-horizontal__overlay {
    opacity: 1;
    transform: translateY(0);
}

.hs-gallery-horizontal__cat {
    font-family: var(--hs-font-serif);
    font-size: 0.9375rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hs-accent);
}

.hs-gallery-horizontal__cta {
    text-align: center;
    margin-top: 56px;
}

/* ============================================================
   Button Group
============================================================ */
.hs-btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   Plans Grid
============================================================ */
.hs-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.hs-plan-card {
    text-align: center;
    position: relative;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
}

.hs-plan-card > .hs-btn {
    margin-top: auto;
}

.hs-plan-card__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hs-accent);
    color: var(--hs-bg-dark);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 20px;
    white-space: nowrap;
}

.hs-plan-card__label {
    display: block;
    font-family: var(--hs-font-serif);
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--hs-accent);
    margin-bottom: 20px;
}

.hs-plan-card__price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.hs-plan-card__currency {
    font-family: var(--hs-font-serif);
    font-size: 1.125rem;
    color: var(--hs-accent);
}

.hs-plan-card__amount {
    font-family: var(--hs-font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--hs-text-light);
}

.hs-plan-card__tax {
    font-size: 0.75rem;
    color: var(--hs-text-muted);
}

.hs-plan-card__desc {
    font-size: 0.8125rem;
    color: var(--hs-text-muted);
    margin-bottom: 24px;
}

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

.hs-plan-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--hs-text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--hs-border);
}

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

.hs-plan-card__features li i {
    color: var(--hs-accent);
    font-size: 0.6875rem;
    flex-shrink: 0;
}

/* Plan Detail Rows (Service page) */
.hs-plan-card--detail {
    text-align: left;
}

.hs-plan-card--detail .hs-plan-card__label,
.hs-plan-card--detail .hs-plan-card__price {
    text-align: center;
}

.hs-plan-card--detail .hs-plan-card__desc {
    text-align: center;
}

.hs-plan-card__details {
    margin-bottom: 24px;
}

.hs-plan-card__detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--hs-border);
    font-size: 0.8125rem;
}

.hs-plan-card__detail-row:last-child {
    border-bottom: none;
}

.hs-plan-card__detail-label {
    color: var(--hs-text-muted);
}

.hs-plan-card__detail-value {
    color: var(--hs-text-light);
    text-align: right;
}

/* ============================================================
   Testimonial
============================================================ */
.hs-testimonial {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.hs-testimonial__quote {
    position: relative;
    margin-bottom: 24px;
}

.hs-testimonial__quote::before {
    content: '\201C';
    display: block;
    font-family: var(--hs-font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--hs-accent);
    opacity: 0.4;
    margin-bottom: 8px;
}

.hs-testimonial__quote p {
    font-size: 0.9375rem;
    color: var(--hs-text-light);
    line-height: 2;
    font-style: italic;
}

.hs-testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hs-testimonial__name {
    font-family: var(--hs-font-serif);
    font-size: 0.9375rem;
    color: var(--hs-text-light);
    letter-spacing: 0.06em;
}

.hs-testimonial__meta {
    font-size: 0.75rem;
    color: var(--hs-text-muted);
    letter-spacing: 0.04em;
}

/* ============================================================
   News
============================================================ */
.hs-news__list {
    max-width: 700px;
    margin: 0 auto;
}

.hs-news__item {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--hs-border);
}

.hs-news__item:first-child {
    border-top: 1px solid var(--hs-border);
}

.hs-news__date {
    font-family: var(--hs-font-serif);
    font-size: 0.8125rem;
    color: var(--hs-text-muted);
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
}

.hs-news__title {
    font-family: var(--hs-font-sans);
    font-size: 0.875rem;
    font-weight: 400;
}

.hs-news__title a {
    color: var(--hs-text-light);
    transition: color var(--hs-transition);
}

.hs-news__title a:hover {
    color: var(--hs-accent);
}

/* ============================================================
   Gallery Page — Filter
============================================================ */
.hs-gallery-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hs-gallery-filter__btn {
    padding: 8px 24px;
    font-family: var(--hs-font-serif);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    color: var(--hs-text-muted);
    background: transparent;
    border: 1px solid var(--hs-border);
    cursor: pointer;
    transition: all var(--hs-transition);
}

.hs-gallery-filter__btn:hover {
    color: var(--hs-text-light);
    border-color: var(--hs-text-muted);
}

.hs-gallery-filter__btn.is-active {
    color: var(--hs-bg-dark);
    background: var(--hs-accent);
    border-color: var(--hs-accent);
}

/* ============================================================
   Gallery Page — Masonry Grid
============================================================ */
.hs-gallery-grid {
    columns: 4;
    column-gap: 8px;
    overflow: hidden;
}

.hs-gallery-item {
    break-inside: avoid;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hs-gallery-item.is-hidden {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}

.hs-gallery-item__inner {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    transition: transform 0.5s ease;
}

.hs-gallery-item--tall .hs-gallery-item__inner {
    aspect-ratio: 3 / 4;
}

.hs-gallery-item--wide .hs-gallery-item__inner {
    aspect-ratio: 16 / 9;
}

.hs-gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--hs-transition);
}

.hs-gallery-item__cat {
    font-family: var(--hs-font-serif);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hs-accent);
}

.hs-gallery-item__title {
    font-family: var(--hs-font-serif);
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    color: var(--hs-text-light);
}

.hs-gallery-item:hover .hs-gallery-item__overlay {
    opacity: 1;
}

.hs-gallery-item:hover .hs-gallery-item__inner {
    transform: scale(1.05);
}

/* ---- Lightbox ---- */
.hs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hs-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.hs-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.hs-lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.hs-lightbox.is-open .hs-lightbox__content {
    transform: scale(1);
}

.hs-lightbox__img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
}

.hs-lightbox__info {
    margin-top: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    letter-spacing: 0.06em;
}

.hs-lightbox__cat {
    text-transform: uppercase;
    margin-right: 12px;
    color: var(--hs-accent, #D4A574);
}

.hs-lightbox__title {
    color: #fff;
}

.hs-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.25rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   Options Grid
============================================================ */
.hs-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hs-option-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--hs-border);
    transition: all var(--hs-transition);
}

.hs-option-item:hover {
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-4px);
}

.hs-option-item__icon {
    font-size: 1.5rem;
    color: var(--hs-accent);
    margin-bottom: 16px;
}

.hs-option-item h3 {
    font-size: 0.9375rem;
    color: var(--hs-text-light);
    margin-bottom: 8px;
}

.hs-option-item__price {
    font-family: var(--hs-font-serif);
    font-size: 0.875rem;
    color: var(--hs-accent);
    letter-spacing: 0.04em;
}

/* ============================================================
   Flow / Timeline
============================================================ */
.hs-flow {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.hs-flow__step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 32px;
    position: relative;
    padding-bottom: 64px;
}

.hs-flow__step:last-child {
    padding-bottom: 0;
}

.hs-flow__number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hs-flow__number span {
    font-family: var(--hs-font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--hs-accent);
    letter-spacing: 0.06em;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hs-accent);
}

.hs-flow__line {
    position: absolute;
    left: 30px;
    top: 56px;
    bottom: 0;
    width: 1px;
    background: var(--hs-border);
    transform: translateX(-50%);
}

.hs-flow__content {
    padding-top: 8px;
}

.hs-flow__icon {
    font-size: 1rem;
    color: var(--hs-accent);
    margin-bottom: 12px;
}

.hs-flow__content h3 {
    font-size: 1.25rem;
    color: var(--hs-text-light);
    margin-bottom: 12px;
}

.hs-flow__content p {
    font-size: 0.875rem;
    color: var(--hs-text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.hs-flow__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hs-flow__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--hs-accent);
    letter-spacing: 0.04em;
}

.hs-flow__meta span i {
    font-size: 0.6875rem;
}

/* ============================================================
   FAQ
============================================================ */
.hs-faq__item {
    border-bottom: 1px solid var(--hs-border);
}

.hs-faq__item:first-child {
    border-top: 1px solid var(--hs-border);
}

.hs-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-size: 0.875rem;
    color: var(--hs-text-light);
    transition: color var(--hs-transition);
}

.hs-faq__question::-webkit-details-marker {
    display: none;
}

.hs-faq__question:hover {
    color: var(--hs-accent);
}

.hs-faq__icon {
    color: var(--hs-accent);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform var(--hs-transition);
}

.hs-faq__item[open] .hs-faq__icon {
    transform: rotate(45deg);
}

.hs-faq__answer {
    padding: 0 0 24px 0;
}

.hs-faq__answer p {
    font-size: 0.8125rem;
    color: var(--hs-text-muted);
    line-height: 1.9;
}

/* ============================================================
   Contact Page
============================================================ */
.hs-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.hs-contact-form h2,
.hs-contact-info h2 {
    font-family: var(--hs-font-serif);
    color: var(--hs-text-light);
}

.hs-contact-form__heading {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hs-contact-form__lead {
    color: var(--hs-text-muted);
    font-size: 0.8125rem;
    margin-bottom: 32px;
}

.hs-contact-info__heading {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

/* Form */
.hs-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.hs-form__group {
    margin-bottom: 20px;
}

.hs-form__row .hs-form__group {
    margin-bottom: 0;
}

.hs-form__label {
    display: block;
    font-size: 0.75rem;
    color: var(--hs-text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.hs-form__required {
    color: var(--hs-accent);
}

.hs-form__input,
.hs-form__select,
.hs-form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--hs-font-sans);
    font-size: 0.875rem;
    color: var(--hs-text-light);
    background: var(--hs-bg-card);
    border: 1px solid var(--hs-border);
    transition: border-color var(--hs-transition);
    appearance: none;
    -webkit-appearance: none;
}

.hs-form__input:focus,
.hs-form__select:focus,
.hs-form__textarea:focus {
    outline: none;
    border-color: var(--hs-accent);
}

.hs-form__input::placeholder,
.hs-form__textarea::placeholder {
    color: var(--hs-text-muted-more);
}

.hs-form__select {
    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='%23F0EDE8' fill-opacity='0.5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

/* Contact Info */
.hs-contact-info__item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.hs-contact-info__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hs-border);
    color: var(--hs-accent);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.hs-contact-info__item h3 {
    font-family: var(--hs-font-sans);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hs-text-muted);
    margin-bottom: 4px;
}

.hs-contact-info__item p {
    font-size: 0.875rem;
    color: var(--hs-text-light);
    line-height: 1.6;
}

.hs-contact-info__item a {
    color: var(--hs-text-light);
    transition: color var(--hs-transition);
}

.hs-contact-info__item a:hover {
    color: var(--hs-accent);
}

/* Map */
.hs-contact-map {
    margin-top: 32px;
}

.hs-contact-map__placeholder {
    width: 100%;
    height: 240px;
    background: var(--hs-bg-card);
    border: 1px solid var(--hs-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hs-contact-map__placeholder i {
    font-size: 2rem;
    color: var(--hs-text-muted-more);
}

.hs-contact-map__placeholder p {
    font-size: 0.8125rem;
    color: var(--hs-text-muted);
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1024px) {
    .hs-gallery-grid {
        columns: 3;
    }

    .hs-plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .hs-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hs-about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hs-gallery-preview {
        grid-auto-rows: 220px;
    }

    .hs-contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width: 768px) {
    .hs-hero__heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hs-gallery-grid {
        columns: 2;
    }

    .hs-gallery-preview {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .hs-gallery-preview__item--tall {
        grid-row: span 2;
    }

    .hs-gallery-preview__item--wide {
        grid-column: span 2;
    }

    /* Horizontal gallery — fall back to grid on mobile */
    .hs-gallery-horizontal {
        padding-top: 80px;
        padding-bottom: 56px;
    }

    .hs-gallery-horizontal__track {
        flex-wrap: wrap;
        padding: 0 16px;
        gap: 8px;
    }

    .hs-gallery-horizontal__item {
        width: calc(50% - 4px);
        height: 200px;
        opacity: 1 !important;
        transform: none !important;
    }

    .hs-gallery-horizontal__overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .hs-gallery-horizontal__item::after {
        opacity: 1;
    }

    .hs-gallery-horizontal__cta {
        margin-top: 32px;
    }

    .hs-flow__step {
        grid-template-columns: 48px 1fr;
        gap: 20px;
        padding-bottom: 48px;
    }

    .hs-flow__number span {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .hs-flow__line {
        left: 24px;
        top: 44px;
    }

    .hs-form__row {
        grid-template-columns: 1fr;
    }

    .hs-options-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hs-news__item {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hs-gallery-grid {
        columns: 2;
        column-gap: 4px;
    }

    .hs-gallery-item {
        margin-bottom: 4px;
    }

    .hs-gallery-preview {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
        gap: 4px;
    }

    .hs-gallery-preview__item--tall {
        grid-row: span 2;
    }

    .hs-gallery-preview__item--wide {
        grid-column: span 2;
    }

    .hs-options-grid {
        grid-template-columns: 1fr;
    }

    .hs-hero__scroll {
        bottom: 24px;
    }

    .hs-flow__step {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-left: 24px;
        border-left: 1px solid var(--hs-border);
    }

    .hs-flow__number {
        justify-content: flex-start;
    }

    .hs-flow__number span {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hs-flow__line {
        display: none;
    }

    .hs-gallery-filter {
        gap: 4px;
    }

    .hs-gallery-filter__btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}
