/*
Theme Name: 週末湯あき
Theme URI: https://shumatsuyuaki.jp/
Author: 週末湯あき
Description: 「今週末、まだ泊まれる温泉宿だけ。」を届ける週末湯あき専用テーマ。
Version: 0.1.0
Text Domain: shumatsu-yuaki
*/

:root {
    --sy-bg: #F7F3EA;
    --sy-surface: #FFFFFF;
    --sy-text: #2E2E2E;
    --sy-muted: #6F746F;
    --sy-line: #E3DED4;
    --sy-accent: #1F3A4D;
    --sy-accent-soft: #EEF2F3;
    --sy-green: #355C4A;
    --sy-rust: #B8644A;
    --sy-gold: #D9A441;
    --sy-max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    color: var(--sy-text);
    background: var(--sy-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
    line-height: 1.7;
}

a {
    color: var(--sy-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.sy-container {
    width: min(var(--sy-max), calc(100% - 32px));
    margin: 0 auto;
}

.sy-header {
    background: var(--sy-surface);
    border-bottom: 1px solid var(--sy-line);
}

.sy-header__inner {
    padding: 20px 0;
}

.sy-header__eyebrow,
.sy-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--sy-accent);
    text-transform: uppercase;
}

.sy-header__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.3;
}

.sy-header__title a {
    color: var(--sy-text);
    text-decoration: none;
}

.sy-header__sub {
    margin: 10px 0 0;
    color: var(--sy-muted);
    max-width: 720px;
}

.sy-main {
    display: block;
}

.sy-hero {
    padding: 48px 0 32px;
}

.sy-hero__title {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.3;
}

.sy-hero__lead {
    margin: 0;
    max-width: 760px;
    color: var(--sy-muted);
}

.sy-hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}

.sy-meta-card,
.sy-area-card {
    background: var(--sy-surface);
    border: 1px solid var(--sy-line);
    border-radius: 18px;
    padding: 18px;
}

.sy-meta-card__label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--sy-muted);
}

.sy-section {
    padding: 20px 0 56px;
}

.sy-section__title {
    margin: 0 0 18px;
    font-size: 24px;
}

.sy-area-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.sy-area-card h4 {
    margin: 0 0 8px;
    font-size: 20px;
}

.sy-area-card p {
    margin: 0;
    color: var(--sy-muted);
}

.sy-footer {
    padding: 28px 0 44px;
    border-top: 1px solid var(--sy-line);
    background: var(--sy-surface);
    color: var(--sy-muted);
}

.sy-footer p {
    margin: 0 0 8px;
}

@media (min-width: 768px) {
    .sy-header__title {
        font-size: 34px;
    }

    .sy-hero__title {
        font-size: 44px;
    }

    .sy-hero__meta {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

/* Compact site header */
.sy-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sy-brand {
    color: var(--sy-accent);
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
}

.sy-brand:hover {
    text-decoration: none;
}

.sy-header__sub {
    margin: 0;
    font-size: 14px;
    text-align: right;
}

@media (max-width: 599px) {
    .sy-header__inner {
        padding: 16px 0;
    }

    .sy-header__sub {
        font-size: 12px;
    }
}

@media (max-width: 599px) {
    .sy-hero__title {
        font-size: 30px;
        line-height: 1.32;
        letter-spacing: -0.025em;
    }
}


/* Single availability article */

.sy-single {
    padding: 44px 0 64px;
}

.sy-single__container {
    max-width: 920px;
}

.sy-article__header {
    margin-bottom: 30px;
}

.sy-article__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.sy-article__intro {
    margin: 18px 0 0;
    max-width: 760px;
    color: var(--sy-muted);
    font-size: 16px;
}

.sy-article__body > .updated {
    display: inline-block;
    margin: 0 0 26px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--sy-accent-soft);
    color: var(--sy-accent);
    font-size: 13px;
    font-weight: 700;
}

.sy-article__body section {
    margin-top: 40px;
}

.sy-article__body section > h2 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.4;
}

.sy-article__body .summary {
    padding: 24px;
    border: 1px solid var(--sy-line);
    border-radius: 18px;
    background: var(--sy-surface);
}

.sy-article__body .summary p {
    color: var(--sy-muted);
}

.sy-article__body .summary ul {
    margin: 18px 0 0;
    padding-left: 22px;
}

.sy-article__body .ranking {
    display: grid;
    gap: 18px;
}

.sy-article__body .ranking > h2 {
    margin-bottom: 0;
}

.sy-article__body .hotel-card {
    padding: 24px;
    border: 1px solid var(--sy-line);
    border-radius: 20px;
    background: var(--sy-surface);
}

.sy-article__body .hotel-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.45;
}

.sy-article__body .hotel-card .score {
    display: inline-block;
    margin: 0 0 16px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--sy-accent-soft);
    color: var(--sy-accent);
    font-size: 13px;
    font-weight: 800;
}

.sy-article__body .hotel-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.sy-article__body .hotel-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--sy-line);
    color: var(--sy-muted);
}

.sy-article__body .hotel-card > p:not(.score) {
    margin: 12px 0 16px;
    color: var(--sy-muted);
}

.sy-article__body .hotel-card > a {
    display: block;
    padding: 13px 18px;
    border-radius: 12px;
    background: var(--sy-accent);
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.sy-article__body .method,
.sy-article__body .notice {
    padding: 22px 24px;
    border-radius: 16px;
}

.sy-article__body .method {
    border: 1px solid var(--sy-line);
    background: var(--sy-surface);
}

.sy-article__body .notice {
    background: #eef1f2;
    color: var(--sy-muted);
    font-size: 14px;
}

.sy-article__body .notice p,
.sy-article__body .method p {
    margin: 0;
}

@media (max-width: 599px) {
    .sy-single {
        padding: 34px 0 48px;
    }

    .sy-article__title {
        font-size: 29px;
        line-height: 1.38;
    }

    .sy-article__intro {
        font-size: 15px;
    }

    .sy-article__body section > h2 {
        font-size: 23px;
    }

    .sy-article__body .summary,
    .sy-article__body .hotel-card,
    .sy-article__body .method,
    .sy-article__body .notice {
        padding: 20px;
    }

    .sy-article__body .hotel-card h3 {
        font-size: 20px;
    }

    .sy-article__body .hotel-card ul {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* Rakuten reservation CTA */
.sy-article__body .hotel-card a[rel~="sponsored"] {
    display: block;
    margin-top: 16px;
    padding: 13px 18px;
    border-radius: 12px;
    background: var(--sy-accent);
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.sy-article__body .hotel-card a[rel~="sponsored"]:hover {
    text-decoration: none;
    opacity: 0.9;
}


/* Emphasize current hotel price */
.sy-article__body .hotel-card li:first-child {
    color: var(--sy-text);
    font-size: 19px;
    font-weight: 800;
}


/* Hide only the redundant review sentence inside hotel cards */
.sy-article__body .hotel-card ul + p {
    display: none;
}


/* Balance long article-title line breaks */
.sy-article__title {
    text-wrap: balance;
}


/* Area card status and live links */
.sy-area-card__status {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eef1f2;
    color: var(--sy-muted);
    font-size: 12px;
    font-weight: 700;
}

.sy-area-card--link {
    display: block;
    color: inherit;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.sy-area-card--link .sy-area-card__status {
    background: var(--sy-accent-soft);
    color: var(--sy-accent);
}

.sy-area-card--link:hover {
    border-color: var(--sy-accent);
    transform: translateY(-2px);
    text-decoration: none;
}


/* Footer legal navigation */
.sy-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 22px 0 18px;
}

.sy-footer__nav a {
    color: var(--sy-muted);
    font-size: 13px;
    text-decoration: none;
}

.sy-footer__nav a:hover {
    color: var(--sy-accent);
    text-decoration: underline;
}

.sy-footer__copyright {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--sy-line);
    font-size: 12px;
    color: var(--sy-muted);
}

@media (max-width: 599px) {
    .sy-footer__nav {
        flex-direction: column;
        gap: 8px;
    }
}


/* Hotel card thumbnail */
.sy-article__body .hotel-card__image {
    display: block;
    width: auto;
    max-width: 640px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: #eef1f2;
}

@media (max-width: 599px) {
    .sy-article__body .hotel-card__image {
        width: 100%;
        max-width: none;
        height: auto;
        margin-bottom: 16px;
        border-radius: 12px;
    }
}

/* 2026-08-27 UI refresh: hero and shared buttons */
.sy-hero--visual {
    padding: 72px 0 40px;
    background:
        linear-gradient(
            90deg,
            rgba(247, 243, 234, 0.96) 0%,
            rgba(247, 243, 234, 0.90) 42%,
            rgba(247, 243, 234, 0.58) 68%,
            rgba(247, 243, 234, 0.18) 100%
        );
}

.sy-hero__inner {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.sy-hero__content {
    max-width: 650px;
}

.sy-hero--visual .sy-hero__title {
    margin: 0 0 18px;
    color: var(--sy-accent);
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.sy-hero--visual .sy-hero__lead {
    max-width: 600px;
    color: var(--sy-text);
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
    font-size: 18px;
    line-height: 1.9;
}

.sy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background-color 0.15s ease;
}

.sy-button:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.sy-button--primary {
    background: var(--sy-accent);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.08);
}

.sy-button--primary:hover {
    background: #29495F;
    box-shadow: 0 8px 24px rgba(31, 58, 77, 0.12);
}

.sy-hero__cta {
    margin-top: 28px;
}

.sy-hero--visual .sy-hero__meta {
    margin-top: 36px;
}

.sy-hero--visual .sy-meta-card {
    border-radius: 12px;
    border-color: var(--sy-line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.05);
}

.sy-hero--visual .sy-meta-card__label {
    color: var(--sy-muted);
}

@media (max-width: 767px) {
    .sy-hero--visual {
        padding: 48px 0 28px;
    }

    .sy-hero__inner {
        min-height: 0;
    }

    .sy-hero--visual .sy-hero__title {
        font-size: 34px;
        line-height: 1.35;
    }

    .sy-hero--visual .sy-hero__lead {
        font-size: 16px;
        line-height: 1.8;
    }

    .sy-hero__cta {
        width: 100%;
    }
}

/* Hero background image */
.sy-hero--visual {
    background-image:
        linear-gradient(
            90deg,
            rgba(247, 243, 234, 0.98) 0%,
            rgba(247, 243, 234, 0.92) 38%,
            rgba(247, 243, 234, 0.68) 58%,
            rgba(247, 243, 234, 0.12) 100%
        ),
        url("assets/images/hero-onsen.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .sy-hero--visual {
        background-position: 68% center;
        background-image:
            linear-gradient(
                180deg,
                rgba(247, 243, 234, 0.94) 0%,
                rgba(247, 243, 234, 0.82) 56%,
                rgba(247, 243, 234, 0.52) 100%
            ),
            url("assets/images/hero-onsen.png");
    }
}

/* Temporary rollback: remove mockup screenshot from live hero */
.sy-hero--visual {
    background-image: none !important;
    background-color: var(--sy-bg);
}


/* Re-enable clean hero image */
.sy-hero--visual {
    background-image:
        linear-gradient(
            90deg,
            rgba(247, 243, 234, 0.98) 0%,
            rgba(247, 243, 234, 0.92) 38%,
            rgba(247, 243, 234, 0.64) 58%,
            rgba(247, 243, 234, 0.10) 100%
        ),
        url("assets/images/hero-onsen.png") !important;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .sy-hero--visual {
        background-image:
            linear-gradient(
                180deg,
                rgba(247, 243, 234, 0.94) 0%,
                rgba(247, 243, 234, 0.84) 55%,
                rgba(247, 243, 234, 0.56) 100%
            ),
            url("assets/images/hero-onsen.png") !important;
        background-position: 68% center;
    }
}

/* 2026-08-27 UI refresh: visual area cards */
.sy-area-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sy-area-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--sy-line);
    border-radius: 12px;
    background: var(--sy-surface);
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.06);
}

.sy-area-card--link {
    display: block;
    color: inherit;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.sy-area-card--link:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 58, 77, 0.32);
    box-shadow: 0 8px 24px rgba(31, 58, 77, 0.10);
    text-decoration: none;
}

.sy-area-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--sy-accent-soft);
}

.sy-area-card__body {
    padding: 20px;
}

.sy-area-card h4 {
    margin: 0 0 4px;
    color: var(--sy-accent);
    font-size: 21px;
    line-height: 1.4;
}

.sy-area-card__region {
    margin: 0 0 12px !important;
    color: var(--sy-muted);
    font-size: 13px;
}

.sy-area-card__description {
    margin: 0 !important;
    color: var(--sy-text) !important;
    font-size: 14px;
    line-height: 1.7;
}

.sy-area-card__status {
    display: inline-block;
    margin-top: 16px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--sy-accent);
    font-size: 13px;
    font-weight: 700;
}

.sy-area-card--link .sy-area-card__status {
    background: transparent;
    color: var(--sy-accent);
}

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

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

/* 2026-08-27 UI refresh: featured collections */
.sy-feature-section {
    background: var(--sy-surface);
}

.sy-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.sy-feature-card {
    display: block;
    padding: 22px;
    border: 1px solid var(--sy-line);
    border-radius: 12px;
    background: var(--sy-surface);
    color: inherit;
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.06);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.sy-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 58, 77, 0.28);
    box-shadow: 0 8px 24px rgba(31, 58, 77, 0.10);
    text-decoration: none;
}

.sy-feature-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.sy-feature-card__badge--availability {
    background: var(--sy-green);
    color: #fff;
}

.sy-feature-card__badge--price {
    background: var(--sy-rust);
    color: #fff;
}

.sy-feature-card__badge--rating {
    background: var(--sy-gold);
    color: var(--sy-text);
}

.sy-feature-card__badge--feature {
    background: var(--sy-accent-soft);
    color: var(--sy-accent);
}

.sy-feature-card h4 {
    margin: 0 0 10px;
    color: var(--sy-accent);
    font-size: 20px;
    line-height: 1.4;
}

.sy-feature-card p {
    margin: 0;
    color: var(--sy-text);
    font-size: 14px;
    line-height: 1.75;
}

.sy-feature-card__cta {
    display: inline-block;
    margin-top: 18px;
    color: var(--sy-accent);
    font-size: 13px;
    font-weight: 700;
}

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

@media (min-width: 1024px) {
    .sy-feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 2026-08-27 UI refresh: weekend hotel cards */
.sy-hotel-section {
    background: var(--sy-bg);
}

.sy-hotel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sy-hotel-card {
    overflow: hidden;
    border: 1px solid var(--sy-line);
    border-radius: 12px;
    background: var(--sy-surface);
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.06);
}

.sy-hotel-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--sy-accent-soft);
}

.sy-hotel-card__body {
    padding: 20px;
}

.sy-hotel-card__area {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--sy-muted);
    font-size: 13px;
    font-weight: 700;
}

.sy-hotel-card__title {
    margin: 0 0 14px;
    color: var(--sy-accent);
    font-size: 19px;
    line-height: 1.45;
}

.sy-hotel-card__price {
    margin: 0 0 8px;
    color: var(--sy-text);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.sy-hotel-card__rating {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    margin: 0 0 14px;
    color: var(--sy-text);
    font-size: 14px;
}

.sy-hotel-card__rating > span {
    color: var(--sy-gold);
    font-weight: 700;
}

.sy-hotel-card__rating small {
    color: var(--sy-muted);
    font-size: 13px;
}

.sy-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.sy-badge--availability {
    background: var(--sy-green);
    color: #fff;
}

.sy-hotel-card__cta {
    display: flex;
    width: 100%;
    margin-top: 18px;
    justify-content: center;
}

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

@media (min-width: 1024px) {
    .sy-hotel-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 2026-08-27 UI refresh: price down cards */
.sy-price-down-section {
    background: var(--sy-surface);
}

.sy-price-down-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sy-price-down-card {
    overflow: hidden;
    border: 1px solid var(--sy-line);
    border-radius: 12px;
    background: var(--sy-surface);
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.06);
}

.sy-price-down-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--sy-accent-soft);
}

.sy-price-down-card__body {
    padding: 20px;
}

.sy-price-down-card__top {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sy-price-down-card__area {
    color: var(--sy-muted);
    font-size: 13px;
    font-weight: 700;
}

.sy-badge--price {
    background: var(--sy-rust);
    color: #fff;
}

.sy-price-down-card h4 {
    margin: 0 0 14px;
    color: var(--sy-accent);
    font-size: 19px;
    line-height: 1.45;
}

.sy-price-down-card__change {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    margin: 0 0 6px;
}

.sy-price-down-card__change del {
    color: var(--sy-muted);
    font-size: 14px;
}

.sy-price-down-card__change span {
    color: var(--sy-muted);
}

.sy-price-down-card__change strong {
    color: var(--sy-text);
    font-size: 22px;
}

.sy-price-down-card__saving {
    margin: 0 0 12px;
    color: var(--sy-rust);
    font-size: 14px;
    font-weight: 700;
}

.sy-price-down-card__rating {
    margin: 0 0 16px;
    color: var(--sy-gold);
    font-size: 14px;
    font-weight: 700;
}

.sy-price-down-card__rating span {
    margin-left: 8px;
    color: var(--sy-muted);
    font-weight: 400;
}

.sy-price-down-card__cta {
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .sy-price-down-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .sy-price-down-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 2026-08-27 UI refresh: high rating cards */
.sy-high-rating-section {
    background: var(--sy-bg);
}

.sy-high-rating-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sy-high-rating-card {
    overflow: hidden;
    border: 1px solid var(--sy-line);
    border-radius: 12px;
    background: var(--sy-surface);
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.06);
}

.sy-high-rating-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--sy-accent-soft);
}

.sy-high-rating-card__body {
    padding: 20px;
}

.sy-high-rating-card__top {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sy-high-rating-card__area {
    color: var(--sy-muted);
    font-size: 13px;
    font-weight: 700;
}

.sy-badge--rating {
    background: var(--sy-gold);
    color: var(--sy-text);
}

.sy-high-rating-card h4 {
    margin: 0 0 14px;
    color: var(--sy-accent);
    font-size: 19px;
    line-height: 1.45;
}

.sy-high-rating-card__rating {
    margin: 0 0 10px;
    color: var(--sy-gold);
    font-size: 15px;
    font-weight: 700;
}

.sy-high-rating-card__rating span {
    margin-left: 8px;
    color: var(--sy-muted);
    font-size: 13px;
    font-weight: 400;
}

.sy-high-rating-card__price {
    margin: 0 0 16px;
    color: var(--sy-text);
    font-size: 22px;
    font-weight: 700;
}

.sy-high-rating-card__cta {
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .sy-high-rating-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .sy-high-rating-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 2026-08-27 UI refresh: search by condition */
.sy-condition-section {
    background: var(--sy-surface);
}

.sy-condition-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sy-condition-card {
    display: flex;
    min-height: 112px;
    padding: 18px 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--sy-line);
    border-radius: 12px;
    background: var(--sy-bg);
    color: var(--sy-accent);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.05);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.sy-condition-card:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 58, 77, 0.28);
    box-shadow: 0 8px 24px rgba(31, 58, 77, 0.08);
    text-decoration: none;
}

.sy-condition-card__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sy-accent-soft);
    color: var(--sy-accent);
    font-size: 18px;
    font-weight: 700;
}

.sy-condition-card:nth-child(1) .sy-condition-card__icon {
    background: var(--sy-green);
    color: #fff;
}

.sy-condition-card:nth-child(3) .sy-condition-card__icon,
.sy-condition-card:nth-child(4) .sy-condition-card__icon,
.sy-condition-card:nth-child(5) .sy-condition-card__icon {
    background: #EEF2F3;
    color: var(--sy-accent);
}

.sy-condition-card:nth-child(8) .sy-condition-card__icon {
    background: rgba(217, 164, 65, 0.20);
    color: var(--sy-text);
}

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

@media (min-width: 1024px) {
    .sy-condition-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}

/* 2026-08-27 UI refresh: update/about section */
.sy-about-section {
    background: var(--sy-bg);
}

.sy-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sy-about-card {
    padding: 24px;
    border: 1px solid var(--sy-line);
    border-radius: 12px;
    background: var(--sy-surface);
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.06);
}

.sy-about-card h3 {
    margin: 0 0 14px;
    color: var(--sy-accent);
    font-size: 22px;
    line-height: 1.45;
}

.sy-about-card > p:not(.sy-eyebrow):not(.sy-about-note) {
    margin: 0;
    color: var(--sy-text);
    font-size: 15px;
    line-height: 1.85;
}

.sy-about-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
}

.sy-about-meta > div {
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--sy-bg);
}

.sy-about-meta span {
    display: block;
    margin-bottom: 4px;
    color: var(--sy-muted);
    font-size: 12px;
}

.sy-about-meta strong {
    color: var(--sy-text);
    font-size: 14px;
}

.sy-about-card--brand {
    background:
        linear-gradient(
            135deg,
            rgba(31, 58, 77, 0.04),
            rgba(53, 92, 74, 0.06)
        ),
        var(--sy-surface);
}

.sy-about-note {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--sy-line);
    color: var(--sy-muted);
    font-size: 12px;
    line-height: 1.75;
}

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

    .sy-about-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 2026-08-27 UI refresh: condition image icons */
.sy-condition-card__icon-image {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .sy-condition-card__icon-image {
        width: 58px;
        height: 58px;
    }
}

/* 2026-08-27 UI refresh: single area detail page */
.sy-single {
    padding: 56px 0 80px;
    background: var(--sy-bg);
}

.sy-single__container {
    max-width: 1040px;
}

.sy-article__header {
    margin-bottom: 36px;
    padding: 32px;
    border: 1px solid var(--sy-line);
    border-radius: 16px;
    background: var(--sy-surface);
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.06);
}

.sy-article__title {
    color: var(--sy-accent);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.35;
}

.sy-article__intro {
    margin-top: 16px;
    color: var(--sy-muted);
    line-height: 1.85;
}

.sy-article__body > .updated {
    margin-bottom: 28px;
    background: rgba(53, 92, 74, 0.10);
    color: var(--sy-green);
}

.sy-article__body .summary {
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.05);
}

.sy-article__body section > h2 {
    color: var(--sy-accent);
    font-size: 28px;
}

.sy-article__body .hotel-card {
    overflow: hidden;
    padding: 0;
    border-radius: 16px;
    background: var(--sy-surface);
    box-shadow: 0 4px 16px rgba(31, 58, 77, 0.06);
}

.sy-article__body .hotel-card__image {
    width: 100%;
    max-width: none;
    height: 320px;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
}

.sy-article__body .hotel-card > h3,
.sy-article__body .hotel-card > .score,
.sy-article__body .hotel-card > ul,
.sy-article__body .hotel-card > p,
.sy-article__body .hotel-card > a {
    margin-left: 24px;
    margin-right: 24px;
}

.sy-article__body .hotel-card > h3 {
    margin-top: 22px;
    color: var(--sy-accent);
}

.sy-article__body .hotel-card .score {
    background: rgba(217, 164, 65, 0.18);
    color: var(--sy-text);
}

.sy-article__body .hotel-card li:first-child {
    color: var(--sy-text);
    font-size: 22px;
    font-weight: 800;
}

.sy-article__body .hotel-card a[rel~="sponsored"] {
    margin: 18px 24px 24px;
    min-height: 48px;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--sy-accent);
    box-shadow: 0 4px 12px rgba(31, 58, 77, 0.12);
}

.sy-article__body .hotel-card a[rel~="sponsored"]:hover {
    background: #29495F;
    opacity: 1;
}

@media (max-width: 599px) {
    .sy-single {
        padding: 36px 0 56px;
    }

    .sy-article__header {
        padding: 22px;
        border-radius: 12px;
    }

    .sy-article__title {
        font-size: 30px;
    }

    .sy-article__body .hotel-card__image {
        height: 220px;
    }

    .sy-article__body .hotel-card > h3,
    .sy-article__body .hotel-card > .score,
    .sy-article__body .hotel-card > ul,
    .sy-article__body .hotel-card > p,
    .sy-article__body .hotel-card > a {
        margin-left: 20px;
        margin-right: 20px;
    }

    .sy-article__body .hotel-card a[rel~="sponsored"] {
        margin-bottom: 20px;
    }
}

.sy-brand {
    display: inline-flex;
    align-items: center;
}

.sy-brand__logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: 220px;
    object-fit: contain;
}

@media (max-width: 599px) {
    .sy-brand__logo {
        height: 34px;
        max-width: 180px;
    }
}
