/*
Theme Name: St.C Travel Goods
Description: Custom theme for St.C Travel Goods
Version: 1.0.0
*/

/* ============================================================
   Reset & Base
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #1a1a1a;
    background-color: #fff;
}

/* ============================================================
   Hero
   ============================================================ */

.hero__bg {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: heroFade 21s infinite;
}

@media (max-width: 768px) {
    .hero__slide {
        background-attachment: scroll;
    }
}

.hero__slide--2 { animation-delay: 7s; }
.hero__slide--3 { animation-delay: 14s; }

@keyframes heroFade {
    0%    { opacity: 0; }
    5%    { opacity: 1; }
    29%   { opacity: 1; }
    38%   { opacity: 0; }
    100%  { opacity: 0; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero__logo-tab {
    position: fixed;
    top: 60px;
    left: 0;
    background-color: #fff;
    padding: 24px;
    padding-left: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 136px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0 8px 8px 0;
    z-index: 10;
    transition: width 0.3s ease, padding 0.3s ease;
}

.hero__logo-tab:hover {
    width: 184px;
}

.hero__logo {
    width: 80px;
    max-width: 100%;
    display: block;
    transition: width 0.3s ease;
}

@media (min-width: 769px) {
    .hero__logo-tab--small {
        width: 73px;
        padding: 15px;
        padding-left: 15px;
    }

    .hero__logo-tab--expanded {
        width: 184px;
        padding: 24px;
        padding-left: 32px;
    }

    .hero__logo-tab--expanded .hero__logo {
        width: 80px;
    }

    .hero__logo-tab--small .hero__logo {
        width: 43px;
    }
}

.hero__content {
    width: 100%;
    max-width: 800px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) and (orientation: landscape) {
    .hero__logo-tab {
        width: 73px;
        padding: 15px;
    }
    .hero__logo {
        width: 43px;
    }
    .hero__content {
        padding: 16px 48px 16px 100px;
    }
    .hero__headline {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    .hero__sub {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    .hero__ctas {
        gap: 10px;
    }
}

.hero__headline {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

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

/* ============================================================
   Burger Button
   ============================================================ */

@media (max-width: 768px) {
    .hero__logo-tab {
        position: absolute;
        pointer-events: none;
        width: 103px;
        padding: 16px;
        padding-left: 32px;
        top: 78px;
        transform: translateY(-50%);
    }

    .hero__logo {
        width: 55px;
    }
}

.burger {
    position: fixed;
    top: 60px;
    right: 32px;
    z-index: 10;
    background: #fff;
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1a1a1a;
    transition: opacity 0.2s ease;
}

.burger:hover span {
    opacity: 0.5;
}

/* ============================================================
   Nav Drawer
   ============================================================ */

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay--visible {
    opacity: 1;
    pointer-events: all;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    padding: 72px 48px 40px;
}

.drawer--open {
    transform: translateX(0);
}

.drawer__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #1a1a1a;
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.drawer__close:hover {
    opacity: 1;
}

.drawer__logo {
    width: 120px;
    height: auto;
    display: block;
    margin-bottom: 40px;
}

.drawer__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer__link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 16px 0;
    border-top: 1px solid #eee;
    transition: color 0.2s ease;
}

.drawer__nav li:first-child .drawer__link {
    border-top: none;
}

.drawer__link:hover {
    color: #888;
}

.drawer__footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.drawer__footer-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.drawer__footer-link:hover {
    color: #1a1a1a;
}

/* ============================================================
   Shared Section Utilities
   ============================================================ */

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.section-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.2s; }
.reveal--delay-2 { transition-delay: 0.4s; }
.reveal--delay-3 { transition-delay: 0.6s; }

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 768px) {
    .section-inner {
        padding: 0 24px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   Our Brands
   ============================================================ */

#brands {
    padding: 100px 0;
    background-color: #f5f4f2;
}

.brands__header {
    margin-bottom: 72px;
}

.brand-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 64px 0;
}

.brand-row + .brand-row {
    border-top: 1px solid #ddd;
}

.brand-row--reverse {
    direction: rtl;
}

.brand-row--reverse > * {
    direction: ltr;
}

.brand-row__media {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-img--mobile { display: none; }

.brand-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

@media (hover: hover) {
    .brand-row:nth-child(2) .brand-img:hover {
        transform: perspective(350px) rotateX(6deg) rotateY(-10deg) scale(1.04);
        box-shadow: 16px 24px 40px rgba(0, 0, 0, 0.25);
    }

    .brand-row:nth-child(3) .brand-img:hover {
        transform: perspective(350px) rotateX(6deg) rotateY(10deg) scale(1.04);
        box-shadow: -16px 24px 40px rgba(0, 0, 0, 0.25);
    }
}

.brand-logo-img {
    width: 160px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.brand-logo-img--qubed {
    width: auto;
    max-width: none;
    height: 28px;
}

.brand-trustpilot-img {
    width: 140px;
    height: auto;
    display: block;
}

.brand-row__text {
    position: relative;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.brand-row__text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.brand-row__text p:last-of-type {
    margin-bottom: 32px;
}

.brand-row__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.brand-intro  { display: none; }

.brand-more-btn {
    display: none;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: 20px;
    transition: color 0.2s ease;
}

.brand-more-btn:hover {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    #brands {
        padding: 60px 0;
    }

    .brands__inner {
        padding: 0 24px;
    }

    .brands__header {
        margin-bottom: 0;
    }

    .brands__header .section-heading {
        margin-bottom: 0;
    }

    .brand-row,
    .brand-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 16px;
    }

    .brand-row__media { display: block; }
    .brand-row:last-child .brand-row__media { display: none; }
    .brand-img--desktop { display: none; }
    .brand-img--mobile  { display: block; }
    .brand-row__media .brand-img {
        height: auto;
        aspect-ratio: unset;
        border-radius: 8px;
        margin-bottom: 24px;
    }

    .brand-row--reverse .brand-row__media .brand-img {
        aspect-ratio: 16 / 9;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }
    .brand-detail     { display: none; }
    .brand-detail.brand-row__ctas { display: flex; }
    .brand-intro      { display: block; font-size: 0.95rem; line-height: 1.7; color: #444; margin-bottom: 20px; }

    .brand-more-btn {
        display: inline-block;
    }
}

/* ============================================================
   Brand Modals
   ============================================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay--visible {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.97);
    width: calc(100% - 48px);
    max-width: 480px;
    max-height: 85vh;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    overflow-y: auto;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal--open {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #1a1a1a;
    cursor: pointer;
    padding: 4px 10px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    z-index: 1;
}

.modal__close:hover { opacity: 1; }

.modal__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.modal__body {
    padding: 24px;
}

.modal__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.modal__logo {
    width: 140px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.modal__trustpilot {
    width: 120px;
    height: auto;
    display: block;
    margin: 16px 0;
}

.modal__body p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.modal__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.modal__ctas .btn {
    text-align: center;
}

/* ============================================================
   What We Do
   ============================================================ */

#what-we-do {
    background-color: #1a1a1a;
    padding: 100px 0;
}

#what-we-do .section-label {
    color: #888;
}

#what-we-do .section-heading {
    color: #fff;
}

.wwd__header {
    max-width: 720px;
    margin-bottom: 64px;
}

.wwd__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 80px;
}

.wwd__pillar-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #666;
    margin-bottom: 16px;
}

.wwd__pillar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.wwd__pillar p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
}

.wwd__accordion-btn {
    display: contents;
    background: none;
    border: none;
    cursor: default;
    text-align: left;
    width: 100%;
    padding: 0;
}

.wwd__accordion-icon { display: none; }

.wwd__accordion-body p { margin-top: 16px; }

@media (max-width: 768px) {
    .wwd__accordion-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 16px 0;
        border-top: 1px solid #333;
        cursor: pointer;
    }

    .wwd__pillar:last-child .wwd__accordion-btn {
        border-bottom: 1px solid #333;
    }

    .wwd__pillar-number { margin-bottom: 0; }
    .wwd__pillar-title { margin-bottom: 0; flex: 1; }

    .wwd__accordion-icon {
        display: block;
        width: 16px;
        height: 16px;
        position: relative;
        flex-shrink: 0;
    }

    .wwd__accordion-icon::before,
    .wwd__accordion-icon::after {
        content: '';
        position: absolute;
        background: #fff;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .wwd__accordion-icon::before {
        width: 14px;
        height: 2px;
        top: 7px;
        left: 1px;
    }

    .wwd__accordion-icon::after {
        width: 2px;
        height: 14px;
        top: 1px;
        left: 7px;
    }

    .wwd__accordion-btn[aria-expanded="true"] .wwd__accordion-icon::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .wwd__accordion-body {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s ease;
    }

    .wwd__accordion-body--open {
        max-height: 400px;
    }

    .wwd__accordion-body p {
        padding-bottom: 16px;
    }
}

.wwd__milestones {
    border-top: 1px solid #333;
    padding-top: 48px;
}

.milestone-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.milestone-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.milestone-year {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
}

.milestone-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
}

@media (max-width: 900px) {
    .wwd__pillars {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .milestone-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .wwd__inner {
        padding: 0 24px;
    }

    #what-we-do {
        padding: 60px 0;
    }

    .milestone-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Become a Stockist
   ============================================================ */

#stockist {
    padding: 100px 0;
    background-color: #f5f4f2;
}

.stockist__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px;
}

.stockist__header {
    margin-top: 112px;
    margin-bottom: 112px;
}

.stockist__intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-top: -16px;
}

@media (max-width: 600px) {
    #stockist {
        padding: 60px 0;
    }

    .stockist__inner {
        padding: 0 24px;
    }

    .stockist__header {
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* ============================================================
   Contact
   ============================================================ */

#contact {
    padding: 100px 0;
    background-color: #1a1a1a;
}

#contact .section-label {
    color: #888;
}

#contact .section-heading {
    color: #fff;
}

#contact p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 40px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-list__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
}

.contact-list a {
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-list address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 0;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }
}

/* ============================================================
   Footer
   ============================================================ */

#footer {
    background-color: #111;
    padding: 48px 0;
    border-top: 1px solid #222;
}

.footer__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer__logo {
    height: 32px;
    width: auto;
    filter: invert(1);
    opacity: 0.8;
}

.footer__copy {
    font-size: 0.8rem;
    color: #666;
    flex: 1;
}

.footer__links a {
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
}

.footer__links a:hover {
    color: #aaa;
}

@media (max-width: 600px) {
    .footer__inner {
        padding: 0 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ============================================================
   About
   ============================================================ */

#about {
    padding: 100px 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__read-more { display: none; }

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.about__grid-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

@media (hover: hover) {
    .about__grid-img:nth-child(1):hover {
        transform: perspective(350px) rotateX(-10deg) rotateY(10deg) scale(1.07);
        box-shadow: -16px -24px 40px rgba(0, 0, 0, 0.35);
    }
    .about__grid-img:nth-child(2):hover {
        transform: perspective(350px) rotateX(-10deg) rotateY(-10deg) scale(1.07);
        box-shadow: 16px -24px 40px rgba(0, 0, 0, 0.35);
    }
    .about__grid-img:nth-child(3):hover {
        transform: perspective(350px) rotateX(10deg) rotateY(10deg) scale(1.07);
        box-shadow: -16px 24px 40px rgba(0, 0, 0, 0.35);
    }
    .about__grid-img:nth-child(4):hover {
        transform: perspective(350px) rotateX(10deg) rotateY(-10deg) scale(1.07);
        box-shadow: 16px 24px 40px rgba(0, 0, 0, 0.35);
    }
}

.about__image {
    aspect-ratio: 1 / 1;
    height: auto;
}

@media (max-width: 768px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .about__image {
        width: 100%;
    }

    .about__expanded {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
    }

    .about__expanded--open {
        max-height: 800px;
    }

    .about__read-more {
        display: inline-block;
        margin-top: 16px;
        font-family: 'Raleway', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #1a1a1a;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    #about {
        padding: 60px 0;
    }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn--primary {
    background-color: #1a1a1a;
    color: #fff;
    border-color: white;
}

.btn--primary:hover {
    background-color: white;
    color: #3a3a3a;
    border-color: #3a3a3a;
}

.btn--secondary {
    background-color: white;
    color: #1a1a1a;
}

.btn--secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
    border-color: white;
}

/* ============================================================
   Inner Pages (page.php)
   ============================================================ */

.page-masthead {
    background-color: #1a1a1a;
    padding: 140px 0 64px;
    position: relative;
}

.page-masthead__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 0 200px;
}

.page-masthead__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.page-body {
    padding: 72px 0;
}

.page-body__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.page-body__inner p {
    font-size: 1rem;
    line-height: 2;
    color: #444;
    margin-bottom: 28px;
}

.page-body__inner ul,
.page-body__inner ol {
    padding-left: 24px;
    margin-bottom: 28px;
}

.page-body__inner li {
    font-size: 1rem;
    line-height: 2;
    color: #444;
    margin-bottom: 10px;
}

.page-body__inner a {
    color: #1a1a1a;
}

.page-body__inner strong {
    font-weight: 700;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .page-masthead {
        padding: 120px 0 48px;
    }

    .page-masthead .hero__logo-tab {
        pointer-events: auto;
    }

    .page-masthead__inner {
        padding: 0 24px;
    }

    .page-body {
        padding: 48px 0;
    }

    .page-body__inner {
        padding: 24px;
    }
}
