:root {
    --paper: #ffffff;
    --surface: #f4f3f6;
    --ink: #1c1a1d;
    --muted: #6e6971;
    --brand: #9e1730;
    --brand-deep: #6f0d20;
    --gold: #c7a34e;
    --line: #e2dfe4;
    --night: #1d191c;
    --night-muted: #b9b3b8;
    --content: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Noto Sans Thai", "Leelawadee UI", Tahoma, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.ber-header {
    position: relative;
    z-index: 10;
    background: var(--paper);
}

.ber-header-inner,
.ber-hero-inner,
.ber-offer-inner,
.ber-contact-inner,
.ber-footer-inner {
    width: min(var(--content), calc(100% - 64px));
    margin: 0 auto;
}

.ber-header-inner {
    display: flex;
    min-height: 94px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.ber-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.ber-brand-mark {
    display: block;
    width: 48px;
    height: auto;
}

.ber-brand-wordmark {
    display: block;
    width: 173px;
    height: auto;
}

.ber-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 16px;
    font-weight: 600;
}

.ber-nav a {
    position: relative;
    padding: 10px 0;
}

.ber-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: var(--brand);
    content: "";
    opacity: 0;
    transform: scaleX(0.25);
    transition: opacity 180ms ease, transform 180ms ease;
}

.ber-nav a:hover::after,
.ber-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.ber-hero {
    overflow: hidden;
    background: var(--surface);
}

.ber-hero-inner {
    display: grid;
    min-height: 770px;
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    align-items: center;
    gap: 68px;
}

.ber-hero-copy {
    position: relative;
    z-index: 2;
    padding: 96px 0 108px;
}

.section-kicker {
    margin: 0 0 19px;
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.5;
    text-transform: uppercase;
}

.ber-hero h1,
.ber-article h2,
.article-section h3,
.ber-offer h2,
.ber-contact h2 {
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.ber-hero h1 {
    font-size: clamp(68px, 7.2vw, 104px);
    line-height: 0.98;
}

.ber-hero h1 span {
    color: var(--brand);
}

.ber-hero-lead {
    margin: 34px 0 0;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.7;
}

.ber-hero-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-top: 43px;
}

.ber-main-link,
.ber-sub-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 0 9px;
    border-bottom: 1px solid currentColor;
    font-size: 16px;
    font-weight: 800;
}

.ber-main-link {
    min-width: 206px;
    color: var(--brand);
}

.ber-sub-link {
    color: var(--ink);
    font-weight: 600;
}

.ber-main-link span,
.ber-sub-link span {
    font-size: 18px;
    transition: transform 180ms ease;
}

.ber-main-link:hover span,
.ber-main-link:focus-visible span {
    transform: translate(3px, 3px);
}

.ber-sub-link:hover span,
.ber-sub-link:focus-visible span {
    transform: translate(3px, -3px);
}

.ber-hero-portrait {
    align-self: end;
    margin: 0;
}

.ber-hero-portrait picture,
.ber-hero-portrait img {
    display: block;
    width: 100%;
}

.ber-hero-portrait img {
    height: auto;
}

.ber-article {
    width: min(930px, calc(100% - 64px));
    margin: 0 auto;
    padding: 132px 0 144px;
}

.ber-article-intro {
    width: min(760px, 100%);
}

.ber-article h2 {
    font-size: clamp(54px, 6vw, 78px);
    line-height: 1.12;
}

.ber-article p {
    margin: 29px 0 0;
    color: #4b474d;
    font-size: 20px;
    line-height: 1.85;
}

.ber-article .article-lead {
    margin-top: 49px;
    color: var(--ink);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.7;
}

.ber-article .article-lead strong {
    color: var(--brand);
    font-size: 1.2em;
    font-weight: 700;
    white-space: nowrap;
}

.ber-article .article-emphasis {
    margin-top: 49px;
    padding-left: 25px;
    color: var(--ink);
    border-left: 3px solid var(--gold);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.65;
}

.article-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 76px;
    margin-top: 125px;
    padding-top: 67px;
    border-top: 1px solid var(--line);
}

.article-section-heading span {
    display: block;
    margin-bottom: 22px;
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.article-section h3 {
    font-size: clamp(35px, 4vw, 48px);
    line-height: 1.3;
}

.article-section-copy p:first-child {
    margin-top: 0;
}

.ber-article .article-accent {
    padding-left: 23px;
    color: var(--brand-deep);
    border-left: 2px solid var(--gold);
    font-weight: 700;
}

.fengshui-refusal-list {
    display: grid;
    gap: 0;
    margin: 31px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.fengshui-refusal-list li {
    position: relative;
    padding: 17px 0 17px 27px;
    color: #4b474d;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    line-height: 1.65;
}

.fengshui-refusal-list li::before {
    position: absolute;
    top: 27px;
    left: 2px;
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    content: "";
}

.fengshui-service-directory {
    width: min(var(--content), calc(100% - 64px));
    margin: 0 auto;
    padding: 124px 0 132px;
    scroll-margin-top: 24px;
}

.fengshui-service-directory-heading {
    max-width: 800px;
    margin-bottom: 64px;
}

.fengshui-service-directory-heading h2 {
    margin: 0;
    font-size: clamp(48px, 5.4vw, 72px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.fengshui-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.fengshui-service-card {
    display: grid;
    min-height: 520px;
    align-content: start;
    padding: 43px 42px 39px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.fengshui-service-card.is-featured {
    background: linear-gradient(145deg, #fff 0%, #fbf5f7 100%);
    border-color: rgba(158, 23, 48, 0.28);
}

.fengshui-service-stage {
    margin: 0;
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
}

.fengshui-service-card h3 {
    margin: 19px 0 0;
    font-size: clamp(33px, 3.3vw, 45px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.fengshui-service-card > p:not(.fengshui-service-stage) {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.fengshui-service-price {
    display: grid;
    gap: 3px;
    margin-top: auto;
    padding-top: 35px;
}

.fengshui-service-price strong {
    color: var(--brand);
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.fengshui-service-price span {
    color: var(--muted);
    font-size: 16px;
}

.fengshui-service-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 19px;
    color: var(--brand);
    border-top: 1px solid var(--line);
    font-size: 16px;
    font-weight: 800;
}

.fengshui-selection-offer {
    scroll-margin-top: 24px;
}

.fengshui-selection-price {
    margin-top: 45px;
}

.ber-article .article-ending {
    margin: 132px 0 0 auto;
    padding: 65px 0 0;
    color: var(--ink);
    border-top: 1px solid var(--line);
    font-size: clamp(32px, 4.4vw, 50px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.5;
}

.ber-offer {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ber-offer-inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.83fr) minmax(0, 1.17fr);
    gap: 92px;
    padding: 122px 0 130px;
}

.ber-offer h2 {
    font-size: clamp(46px, 5vw, 66px);
    line-height: 1.24;
}

.ber-price {
    display: grid;
    margin-top: 55px;
    padding-top: 33px;
    border-top: 1px solid var(--line);
}

.ber-price span,
.ber-price small {
    color: var(--muted);
    font-size: 16px;
}

.ber-price strong {
    margin: 3px 0;
    color: var(--brand);
    font-size: clamp(48px, 5.5vw, 70px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.ber-future-price {
    margin: 22px 0 0;
    padding: 17px 19px;
    color: var(--muted);
    background: rgba(158, 23, 48, .045);
    border-left: 3px solid rgba(158, 23, 48, .38);
    font-size: 16px;
    line-height: 1.65;
}

.fengshui-rate-list {
    display: grid;
    margin-top: 48px;
    border-top: 1px solid var(--line);
}

.fengshui-rate-row {
    display: grid;
    gap: 4px;
    padding: 20px 0 21px;
    border-bottom: 1px solid var(--line);
}

.fengshui-rate-row span,
.fengshui-rate-notes span {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.fengshui-rate-row strong {
    color: var(--brand);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
}

.fengshui-rate-notes {
    display: grid;
    gap: 5px;
    margin-top: 22px;
}

.ber-details {
    border-top: 1px solid var(--line);
}

.ber-detail-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 19px;
    padding: 29px 0 31px;
    border-bottom: 1px solid var(--line);
}

.ber-detail-row > span {
    padding-top: 3px;
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
}

.ber-detail-row strong {
    display: block;
    font-size: 19px;
    line-height: 1.45;
}

.ber-detail-row p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.ber-offer-notes {
    display: grid;
    gap: 5px;
    padding-top: 27px;
}

.ber-offer-notes strong {
    color: var(--ink);
    font-size: 16px;
}

.ber-offer-notes span {
    color: var(--muted);
    font-size: 16px;
}

.ber-policy {
    margin-top: 34px;
    padding: 29px 28px 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(158, 23, 48, 0.16);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(67, 46, 63, 0.06);
}

.ber-policy .section-kicker {
    margin-bottom: 8px;
}

.ber-policy h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 650;
    line-height: 1.4;
}

.ber-policy-list {
    display: grid;
    gap: 0;
    margin-top: 20px;
}

.ber-policy-list article {
    padding: 17px 0 18px;
    border-top: 1px solid var(--line);
}

.ber-policy-list strong {
    display: block;
    color: var(--brand);
    font-size: 17px;
}

.ber-policy-list p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.ber-contact {
    overflow: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.72) 0, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 12% 76%, rgba(172, 222, 232, 0.38) 0, rgba(172, 222, 232, 0) 42%),
        linear-gradient(135deg, #eaf5f7 0%, #eeeaf7 35%, #f6eaf0 68%, #f4edd9 100%);
    scroll-margin-top: 24px;
}

.ber-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    align-items: center;
    gap: 68px;
    padding: 104px 0 96px;
}

.ber-contact-copy {
    position: relative;
    z-index: 2;
}

.section-kicker-light {
    color: #8f7028;
}

.ber-contact h2 {
    font-size: clamp(56px, 6vw, 82px);
    line-height: 1.03;
}

.ber-contact-lead {
    margin: 27px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.contact-channels {
    display: grid;
    width: min(640px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 38px;
}

.contact-channel {
    position: relative;
    display: grid;
    min-height: 128px;
    grid-template-columns: minmax(0, 1fr) 26px;
    align-content: center;
    column-gap: 12px;
    padding: 20px 20px 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(111, 13, 32, 0.14);
    border-radius: 18px;
    box-shadow: 0 13px 30px rgba(67, 46, 63, 0.06);
    transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
    color: var(--brand);
    border-color: rgba(111, 13, 32, 0.32);
    transform: translateY(-2px);
}

.contact-channel-wide {
    grid-column: 1 / -1;
}

.contact-channel-primary {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(111, 13, 32, 0.28);
}

.contact-channel-action {
    color: var(--ink);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 234, 240, 0.82));
    border-color: rgba(111, 13, 32, 0.24);
    box-shadow: 0 14px 32px rgba(67, 46, 63, 0.09);
}

.contact-channel-action:hover,
.contact-channel-action:focus-visible {
    color: var(--brand);
    border-color: rgba(111, 13, 32, 0.48);
}

.contact-channel-action .contact-channel-label {
    color: var(--brand);
}

.contact-channel-action small {
    color: var(--muted);
}

.contact-channel-action .contact-channel-arrow {
    color: var(--brand);
}

.contact-channel-label {
    grid-column: 1;
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
}

.contact-channel strong {
    grid-column: 1;
    margin-top: 4px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
}

.contact-channel small {
    grid-column: 1;
    margin-top: 5px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.contact-channel-arrow {
    grid-row: 1 / span 3;
    grid-column: 2;
    align-self: center;
    justify-self: end;
    font-size: 22px;
    transition: transform 180ms ease;
}

.contact-channel:hover .contact-channel-arrow,
.contact-channel:focus-visible .contact-channel-arrow {
    transform: translate(3px, -3px);
}

.ber-contact-portrait {
    position: relative;
    width: min(100%, 410px);
    justify-self: center;
    margin: 0;
}

.ber-contact-portrait::before {
    position: absolute;
    top: 5%;
    right: -11%;
    width: 108%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(183, 205, 231, 0.38);
    content: "";
}

.ber-contact-portrait picture {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 220px 220px 32px 32px;
    box-shadow: 0 28px 55px rgba(66, 45, 61, 0.18);
    aspect-ratio: 4 / 5;
}

.ber-contact-portrait img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100% !important;
    object-fit: cover;
    object-position: 50% 19%;
}

.ber-contact-portrait figcaption {
    position: relative;
    z-index: 2;
    width: calc(100% - 42px);
    margin: 18px auto 0;
    padding: 17px 20px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(111, 13, 32, 0.12);
    border-radius: 16px;
    box-shadow: 0 17px 38px rgba(66, 45, 61, 0.14);
    backdrop-filter: blur(12px);
}

.ber-contact-portrait figcaption strong,
.ber-contact-portrait figcaption span {
    display: block;
}

.ber-contact-portrait figcaption strong {
    color: var(--brand);
    font-size: 21px;
    font-weight: 700;
}

.ber-contact-portrait figcaption span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.contact-person-socials {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
}

.contact-person-social {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(111, 13, 32, 0.12);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.2;
    transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.contact-person-social:hover,
.contact-person-social:focus-visible {
    color: var(--brand);
    border-color: rgba(111, 13, 32, 0.3);
    transform: translateY(-2px);
}

.contact-person-social svg {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.contact-person-social svg circle {
    fill: #1877f2;
}

.contact-person-social.is-tiktok svg circle {
    fill: #171518;
}

.contact-person-social svg path {
    fill: #fff;
}

.ber-footer {
    color: var(--ink);
    background: linear-gradient(105deg, #eaf5f7 0%, #eeeaf7 40%, #f6eaf0 72%, #f4edd9 100%);
}

.ber-footer-inner {
    display: flex;
    min-height: 132px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(111, 13, 32, 0.14);
}

.ber-brand-footer {
    opacity: 1;
}

.ber-brand-footer .ber-brand-mark {
    width: 39px;
}

.ber-brand-footer .ber-brand-wordmark {
    width: 150px;
}

.ber-footer-inner > span {
    color: var(--muted);
    font-size: 16px;
    letter-spacing: 0.08em;
}

.auspicious-page .ber-hero h1 span,
.fengshui-page .ber-hero h1 span {
    display: block;
    margin-top: 10px;
    font-size: 0.65em;
    line-height: 1.15;
}

.fengshui-page .ber-hero h1 span {
    font-size: 0.58em;
}

.offer-intro {
    max-width: 330px;
    margin: 39px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.auspicious-groups {
    border-top: 1px solid var(--line);
}

.auspicious-group {
    padding: 30px 0 34px;
    border-bottom: 1px solid var(--line);
}

.auspicious-group-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 18px;
}

.auspicious-group h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.auspicious-group-heading strong {
    color: var(--brand);
    font-size: 18px;
    white-space: nowrap;
}

.auspicious-list {
    display: grid;
}

.auspicious-row {
    display: grid;
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) 26px;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    transition: color 180ms ease;
}

.auspicious-row:first-child {
    border-top: 0;
}

.auspicious-row > span {
    color: var(--muted);
    font-size: 16px;
}

.auspicious-row strong {
    color: var(--brand);
    font-size: 17px;
    text-align: right;
}

.auspicious-row i {
    font-size: 17px;
    font-style: normal;
    transition: transform 180ms ease;
}

.auspicious-row:hover,
.auspicious-row:focus-visible {
    color: var(--brand);
}

.auspicious-row:hover i,
.auspicious-row:focus-visible i {
    transform: translate(3px, -3px);
}

.auspicious-notes {
    gap: 8px;
}

.service-directory {
    width: min(var(--content), calc(100% - 64px));
    margin: 0 auto;
    padding: 125px 0 140px;
    scroll-margin-top: 24px;
}

.service-directory-heading {
    max-width: 780px;
    margin-bottom: 74px;
}

.service-directory-heading h2 {
    margin: 0;
    font-size: clamp(52px, 6vw, 78px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.18;
}

.service-directory-list {
    border-top: 1px solid var(--line);
}

.service-directory-row {
    display: grid;
    grid-template-columns: 48px minmax(280px, 1fr) minmax(190px, 0.62fr) 132px;
    align-items: center;
    gap: 30px;
    padding: 49px 0 53px;
    border-bottom: 1px solid var(--line);
}

.service-directory-number {
    align-self: start;
    padding-top: 7px;
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-directory-copy h3 {
    margin: 0;
    font-size: clamp(31px, 3.2vw, 43px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.35;
}

.service-directory-copy p {
    max-width: 540px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.service-directory-meta {
    display: grid;
    gap: 4px;
}

.service-directory-meta strong {
    color: var(--brand);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
}

.service-directory-meta > span {
    color: var(--muted);
    font-size: 16px;
}

.service-directory-prices {
    gap: 6px;
}

.service-directory-prices > span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.service-directory-prices b {
    color: var(--brand);
    font-size: 16px;
}

.service-directory-prices small {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.service-directory-link {
    display: inline-flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid currentColor;
    font-size: 16px;
    font-weight: 700;
}

.service-directory-link span {
    transition: transform 180ms ease;
}

.service-directory-link:hover,
.service-directory-link:focus-visible {
    color: var(--brand);
}

.service-directory-link:hover span,
.service-directory-link:focus-visible span {
    transform: translate(3px, -3px);
}

@media (max-width: 960px) {
    .ber-hero-inner {
        min-height: 690px;
        grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
        gap: 35px;
    }

    .ber-hero h1 {
        font-size: 74px;
    }

    .article-section {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .article-section-heading {
        max-width: 610px;
    }

    .article-section-copy {
        max-width: 680px;
        margin-left: auto;
    }

    .ber-offer-inner {
        gap: 58px;
    }

    .ber-contact-inner {
        grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
        gap: 28px;
    }

    .contact-channel {
        grid-template-columns: minmax(0, 1fr) 24px;
        padding-right: 17px;
        padding-left: 17px;
    }

    .service-directory-row {
        grid-template-columns: 42px minmax(260px, 1fr) minmax(170px, 0.55fr);
    }

    .service-directory-link {
        grid-column: 2 / -1;
        justify-self: start;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 17px;
    }

    .ber-header-inner,
    .ber-hero-inner,
    .ber-offer-inner,
    .ber-contact-inner,
    .ber-footer-inner,
    .ber-article,
    .service-directory,
    .fengshui-service-directory {
        width: min(var(--content), calc(100% - 32px));
    }

    .ber-header-inner {
        min-height: 76px;
    }

    .ber-brand {
        gap: 8px;
    }

    .ber-brand-mark {
        width: 37px;
    }

    .ber-brand-wordmark {
        width: 127px;
    }

    .ber-nav {
        gap: 18px;
        font-size: 16px;
    }

    .ber-nav a:first-child {
        display: none;
    }

    .ber-hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ber-hero-copy {
        padding: 67px 0 50px;
    }

    .ber-hero h1 {
        font-size: clamp(61px, 17vw, 82px);
    }

    .auspicious-page .ber-hero h1 span,
    .fengshui-page .ber-hero h1 span {
        font-size: 0.68em;
    }

    .ber-hero-lead {
        margin-top: 27px;
        font-size: 18px;
    }

    .ber-hero-links {
        align-items: flex-start;
        gap: 18px 24px;
        margin-top: 35px;
    }

    .ber-main-link {
        min-width: 194px;
    }

    .ber-hero-portrait {
        width: calc(100% + 32px);
        margin-left: -16px;
    }

    .ber-article {
        padding: 91px 0 104px;
    }

    .fengshui-service-directory {
        padding: 88px 0 94px;
    }

    .fengshui-service-directory-heading {
        margin-bottom: 42px;
    }

    .fengshui-service-directory-heading h2 {
        font-size: 43px;
    }

    .fengshui-service-grid {
        grid-template-columns: 1fr;
    }

    .fengshui-service-card {
        min-height: 0;
        padding: 32px 26px 29px;
    }

    .fengshui-service-price {
        margin-top: 38px;
    }

    .ber-article h2 {
        font-size: clamp(45px, 13vw, 61px);
    }

    .ber-article p {
        font-size: 18px;
        line-height: 1.8;
    }

    .ber-article .article-lead {
        margin-top: 38px;
        font-size: 22px;
    }

    .ber-article .article-emphasis {
        margin-top: 40px;
        font-size: 20px;
    }

    .article-section {
        gap: 28px;
        margin-top: 82px;
        padding-top: 43px;
    }

    .article-section h3 {
        font-size: 35px;
    }

    .article-section-copy {
        max-width: none;
        margin-left: 0;
    }

    .ber-article .article-ending {
        margin-top: 89px;
        padding-top: 44px;
        font-size: 31px;
        line-height: 1.55;
    }

    .ber-offer-inner {
        grid-template-columns: 1fr;
        gap: 58px;
        padding: 87px 0 94px;
    }

    .ber-offer h2 {
        font-size: 44px;
    }

    .ber-price {
        margin-top: 42px;
    }

    .ber-price strong {
        font-size: 52px;
    }

    .ber-future-price { font-size: 16px; }

    .ber-detail-row {
        padding: 24px 0 26px;
    }

    .ber-policy {
        margin-top: 30px;
        padding: 25px 21px 21px;
    }

    .ber-contact-inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 58px;
        padding: 82px 0 76px;
    }

    .ber-contact-copy {
        padding: 0;
    }

    .ber-contact h2 {
        font-size: clamp(52px, 15vw, 70px);
    }

    .ber-contact-lead {
        font-size: 17px;
    }

    .contact-channels {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .contact-channel-wide {
        grid-column: 1;
    }

    .contact-channel {
        min-height: 112px;
        grid-template-columns: minmax(0, 1fr) 25px;
        gap: 12px;
    }

    .contact-channel strong {
        font-size: 20px;
    }

    .ber-contact-portrait {
        width: min(286px, 80%);
        margin-right: auto;
        margin-left: auto;
    }

    .ber-contact-portrait::before {
        top: 8%;
        right: -10%;
    }

    .ber-contact-portrait figcaption {
        width: calc(100% - 24px);
        margin-top: 14px;
        padding: 14px 13px;
    }

    .ber-contact-portrait figcaption strong {
        font-size: 19px;
    }

    .ber-footer-inner {
        min-height: 104px;
    }

    .ber-brand-footer .ber-brand-wordmark {
        display: none;
    }

    .offer-intro {
        margin-top: 29px;
    }

    .auspicious-row {
        grid-template-columns: minmax(0, 1fr) 22px;
        gap: 10px;
    }

    .service-directory {
        padding: 88px 0 98px;
    }

    .service-directory-heading {
        margin-bottom: 49px;
    }

    .service-directory-heading h2 {
        font-size: 45px;
    }

    .service-directory-row {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 20px;
        padding: 37px 0 41px;
    }

    .service-directory-number {
        padding-top: 5px;
    }

    .service-directory-copy h3 {
        font-size: 32px;
    }

    .service-directory-meta,
    .service-directory-link {
        grid-column: 2;
    }

    .service-directory-meta {
        margin-top: 6px;
    }

    .service-directory-link {
        margin-top: 7px;
    }
}

@media (max-width: 430px) {
    .ber-nav a:nth-child(2) {
        display: none;
    }

    .contact-channel {
        grid-template-columns: 1fr 24px;
        row-gap: 4px;
    }

    .contact-channel-label,
    .contact-channel strong,
    .contact-channel small {
        grid-column: 1;
    }

    .contact-channel-arrow {
        grid-row: 1 / span 3;
        grid-column: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
