/* ==========================================================================
   IndeedClean - Homepage sections
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Top bar
   -------------------------------------------------------------------------- */

.topbar {
    background: var(--dark);
    color: var(--on-dark-soft);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.topbar__group {
    display: flex;
    align-items: center;
    gap: 26px;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar__item::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
}

.topbar__group--right .topbar__item::before {
    display: none;
}

.topbar a:hover {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   2. Header
   -------------------------------------------------------------------------- */

.header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    gap: 30px;
}

.brand {
    display: block;
}

.brand__logo {
    height: 46px;
    width: auto;
}

.brand__tag {
    margin-top: 3px;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav__link:hover {
    color: var(--green-dark);
}

.nav__link--active {
    color: var(--green-dark);
    border-bottom-color: var(--blue);
}

.nav__item {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    width: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 8px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(19, 58, 38, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 60;
}

.nav__dropdown::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading);
    line-height: 1.35;
}

.nav__dropdown a:hover {
    background: var(--cream);
    color: var(--green-dark);
}

/* Burger button - hidden until the desktop nav is dropped (responsive.css) */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
}

.burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--green-dark);
    transition: transform 0.25s, opacity 0.2s;
}

.burger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger--open span:nth-child(2) {
    opacity: 0;
}

.burger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlays the page below the header, so opening it shifts nothing */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    max-height: 0;
    border-top: 1px solid transparent;
    background: var(--bg);
    transition: max-height 0.3s ease;
}

.mobile-nav--open {
    max-height: min(80vh, 920px);
    overflow-y: auto;
    border-top-color: var(--line);
    box-shadow: 0 20px 34px rgba(19, 58, 38, 0.12);
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
}

.mobile-nav__link {
    padding: 15px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 500;
    color: var(--heading);
}

.mobile-nav__link--active {
    color: var(--green-dark);
    box-shadow: inset 3px 0 0 var(--blue);
}

.mobile-nav__link--sub {
    padding-left: 38px;
    font-size: 13px;
    font-weight: 400;
    color: var(--body);
}

.mobile-nav .btn {
    margin: 20px 24px 24px;
}

/* --------------------------------------------------------------------------
   3. Hero
   -------------------------------------------------------------------------- */

.hero {
    padding: 61px 0 39px;
}

.hero__inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.hero__copy {
    width: 520px;
    flex: none;
}

.hero__title {
    max-width: 440px;
    margin: 22px 0 26px;
}

.hero__text {
    max-width: 400px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    margin: 34px 0 26px;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
}

.stars {
    color: var(--blue);
    letter-spacing: 2px;
    font-size: 13px;
}

.hero__rating strong {
    color: var(--heading);
    font-weight: 600;
}

/* Hero visual */
.hero__visual {
    position: relative;
    width: 515px;
    flex: none;
    padding-bottom: 40px;
}

/* Before / after comparison. --split controls how much of the "before"
   image is visible; JS updates it as the handle is dragged. */
.visual-card {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--mint-100);
    touch-action: none;
    user-select: none;
}

.visual-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card__img--before {
    clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.visual-card__tag {
    position: absolute;
    /* Clears the stats card that overlaps the bottom of the visual */
    bottom: 62px;
    z-index: 3;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(19, 58, 38, 0.62);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.visual-card__tag--before {
    left: 18px;
}

.visual-card__tag--after {
    right: 18px;
}

.visual-card__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split);
    z-index: 4;
    width: 2px;
    margin-left: -1px;
    background: var(--white);
    box-shadow: 0 0 12px rgba(19, 58, 38, 0.35);
    pointer-events: none;
}

/* The native range input sits on top and provides keyboard and pointer control */
.visual-card__range {
    position: absolute;
    inset: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    appearance: none;
    background: transparent;
}

.visual-card__range::-webkit-slider-thumb {
    appearance: none;
    width: 44px;
    height: 500px;
    cursor: ew-resize;
}

.visual-card__range::-moz-range-thumb {
    width: 44px;
    height: 500px;
    border: none;
    background: transparent;
    cursor: ew-resize;
}

.visual-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--heading);
    box-shadow: 0 6px 18px rgba(19, 58, 38, 0.1);
}

.visual-badge__tick {
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 9px;
}

.visual-knob {
    position: absolute;
    top: 50%;
    left: var(--split);
    z-index: 5;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--heading);
    box-shadow: 0 6px 18px rgba(19, 58, 38, 0.24);
    pointer-events: none;
}

.hero__stats {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 16px 26px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 14px 40px rgba(19, 58, 38, 0.12);
}

.hero__stats div + div {
    padding-left: 22px;
}

.hero__stats strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--heading);
    line-height: 1.2;
}

.hero__stats span {
    font-size: 11px;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   4. Trust strip
   -------------------------------------------------------------------------- */

.trust {
    background: var(--dark);
}

.trust__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--white);
}

.trust__item svg {
    flex: none;
    color: var(--blue);
}

/* --------------------------------------------------------------------------
   5. Services
   -------------------------------------------------------------------------- */

.services {
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service {
    padding: 30px 30px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service:nth-child(3n) {
    border-right: none;
}

.service:nth-last-child(-n + 3) {
    border-bottom: none;
}

.service__num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
}

.service__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 18px 0 22px;
    border-radius: 10px;
    background: var(--mint-100);
    color: var(--dark);
}

.service h3 {
    margin-bottom: 12px;
}

.service p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Highlighted card */
.service--featured {
    background: var(--dark-2);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.service--featured .service__num {
    color: var(--on-dark-soft);
}

.service--featured .service__icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.service--featured h3 {
    color: var(--white);
}

.service--featured p {
    color: var(--on-dark-soft);
}

/* --------------------------------------------------------------------------
   6. About / trust
   -------------------------------------------------------------------------- */

.about__row {
    gap: 76px;
}

.about__visual {
    position: relative;
}

/* Photo sits as the column background; the badges float on top of it */
.about__card {
    position: relative;
    height: 540px;
    border-radius: var(--radius-lg);
    background-color: var(--mint-100);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 26px 60px rgba(19, 58, 38, 0.16);
    overflow: hidden;
}

/* Softens the lower half so the white quote card reads cleanly against it */
.about__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 58, 38, 0.42), transparent 58%);
}

.about__est {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    padding: 7px 18px;
    background: var(--blue);
    color: var(--white);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
}

.about__badge {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 2;
    display: grid;
    gap: 2px;
    justify-items: center;
    padding: 14px 18px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 26px rgba(19, 58, 38, 0.18);
}

.about__badge strong {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1;
    color: var(--green-dark);
}

.about__badge span {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.about__quote {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 14px 36px rgba(19, 58, 38, 0.18);
}

.about__quote .stars {
    font-size: 11px;
}

.about__quote p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--body);
}

.about__quote cite {
    display: block;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.about__body h2 {
    margin: 20px 0 22px;
}

.about__body .btn {
    margin-top: 34px;
}

.about__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-top: 28px;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
}

.about__list svg {
    flex: none;
    color: var(--green);
}

/* --------------------------------------------------------------------------
   7. Dark CTA banner
   -------------------------------------------------------------------------- */

.cta-banner {
    background: var(--dark-3);
    border-top: 2px dashed rgba(255, 255, 255, 0.22);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.22);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 34px 0;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 32px;
}

/* --------------------------------------------------------------------------
   8. How it works
   -------------------------------------------------------------------------- */

.how {
    background: var(--cream);
    padding-top: 121px;
}

.how__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.how__steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 12%;
    right: 4%;
    border-top: 1px dashed var(--mint-300);
}

.step {
    position: relative;
}

.step__num {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 26px;
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
}

.step__num--light {
    background: var(--white);
    color: var(--heading);
    border: 1px solid var(--line);
}

.step__num--dark {
    background: var(--dark);
    color: var(--white);
}

.step__num--blue {
    background: var(--blue);
    color: var(--white);
}

.step h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    max-width: 22em;
}

/* --------------------------------------------------------------------------
   9. Commitments panel
   -------------------------------------------------------------------------- */

.commit {
    background: var(--cream);
    padding-bottom: 169px;
}

.commit__panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.commit__left {
    background: var(--dark);
    padding: 52px 46px 56px;
}

.commit__left h2 {
    color: var(--white);
    font-size: 34px;
    margin: 18px 0 34px;
}

.commit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 34px;
}

.commit__item h4 {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--white);
    margin-bottom: 8px;
}

.commit__item span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--blue);
}

.commit__item p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--on-dark-soft);
}

.commit__right {
    position: relative;
    background: linear-gradient(150deg, var(--dark-3), var(--dark-2));
    padding: 52px 46px;
    display: grid;
    place-items: center;
}

.rings {
    position: relative;
    display: grid;
    place-items: center;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.rings::before,
.rings::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.rings::before {
    width: 168px;
    height: 168px;
}

.rings::after {
    width: 108px;
    height: 108px;
}

.rings svg {
    position: relative;
    color: var(--blue);
}

.commit__stat {
    position: absolute;
    left: 46px;
    bottom: 46px;
    padding: 16px 22px;
    background: var(--cream);
    border-radius: var(--radius);
}

.commit__stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--heading);
    line-height: 1.2;
}

.commit__stat span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--body);
}

/* --------------------------------------------------------------------------
   10. Portfolio
   -------------------------------------------------------------------------- */

.work__head h2 {
    width: 520px;
    margin-bottom: 30px;
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.filter {
    padding: 8px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--body);
    cursor: pointer;
}

.filter:hover {
    border-color: var(--green);
}

.filter--active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.work-card {
    position: relative;
    height: 473px;
    border-radius: var(--radius);
    overflow: hidden;
}

.work-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-card__img {
    transform: scale(1.04);
}

.work-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(to top, rgba(19, 58, 38, 0.7), transparent 55%);
}

.work-card__title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--white);
}

.work-card__tag {
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(19, 58, 38, 0.6);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. Blue CTA bar
   -------------------------------------------------------------------------- */

.cta-bar {
    background: var(--blue);
}

.cta-bar__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 0;
}

.cta-bar__icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.cta-bar__text {
    flex: 1;
}

.cta-bar h3 {
    color: var(--white);
    font-size: 24px;
}

.cta-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------------------
   12. Blog
   -------------------------------------------------------------------------- */

.blog {
    background: var(--cream);
}

.post {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

.post__art {
    position: relative;
    height: 205px;
}

/* Clips the image zoom while letting the arrow button hang over the edge */
.post__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.post__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post:hover .post__media img {
    transform: scale(1.05);
}

/* Round arrow button that straddles the bottom edge of the image */
.post__go {
    position: absolute;
    right: 18px;
    bottom: -18px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(76, 160, 232, 0.4);
    transition: background-color 0.2s, transform 0.2s;
}

.post__go:hover {
    background: var(--blue-dark);
    transform: scale(1.08);
}


.post__date {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    background: var(--white);
    border-radius: 6px;
    text-align: center;
}

.post__date strong {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--heading);
    line-height: 1.1;
}

.post__date span {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.post__body {
    padding: 26px 24px 30px;
}

.post__cat {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--green-dark);
    text-transform: uppercase;
}

.post h3 {
    font-size: 19px;
    margin: 10px 0 10px;
}

.post p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   13. Stats
   -------------------------------------------------------------------------- */

.stats {
    background: var(--dark);
}

.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 84px 0;
}

.stats__item {
    text-align: center;
}

.stats__item + .stats__item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stats__item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 44px;
    color: var(--white);
    line-height: 1.2;
}

.stats__item span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--on-dark-soft);
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   14. Testimonial
   -------------------------------------------------------------------------- */

.quote {
    background: linear-gradient(180deg, var(--mint-100), var(--cream));
    padding: 80px 0 85px;
    text-align: center;
}

.quote__mark {
    font-family: var(--font-serif);
    font-size: 60px;
    line-height: 0.6;
    color: var(--mint-300);
}

.quote__text {
    max-width: 790px;
    margin: 30px auto 34px;
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1.5;
    color: var(--heading);
}

.quote__avatar {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--dark-2);
}

.quote__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.quote__meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--body);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 26px;
}

.dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--mint-300);
    cursor: pointer;
}

.dot--active {
    width: 18px;
    background: var(--blue);
}

/* --------------------------------------------------------------------------
   15. Offers
   -------------------------------------------------------------------------- */

.offers {
    background: var(--cream);
}

.offers h2 {
    margin-bottom: 40px;
}

.offers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    max-width: 1006px;
}

.offer {
    display: grid;
    grid-template-columns: 108px 1fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(19, 58, 38, 0.06);
}

.offer__amount {
    position: relative;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 28px 10px;
    background: var(--dark-2);
    color: var(--white);
}

.offer__amount strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 1.2;
}

.offer__amount span {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    color: var(--on-dark-soft);
}

/* Notch that gives the coupon its ticket shape */
.offer__amount::after {
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    width: 14px;
    height: 100%;
    background: var(--dark);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.offer__body {
    padding: 20px 26px 22px;
}

.offer__body h3 {
    font-size: 18px;
    margin: 12px 0 8px;
}

.offer__body p {
    font-size: 13px;
    margin-bottom: 12px;
}

.offer__valid {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--blue);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */

.footer {
    background: var(--dark);
    color: var(--on-dark-soft);
}

.footer__inner {
    display: grid;
    grid-template-columns: 242px 185px 202px 1fr;
    gap: 40px;
    padding: 88px 0 64px;
}

.footer__logo {
    height: 40px;
    width: auto;
}

.footer__about {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.75;
    max-width: 20em;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--white);
}

.socials a:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.footer h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__links li + li {
    margin-top: 11px;
}

.footer__links a {
    font-size: 13px;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact li {
    display: flex;
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.footer__contact li + li {
    margin-top: 14px;
}

.footer__contact svg {
    flex: none;
    margin-top: 4px;
    color: var(--blue);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
}

.footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
}

.footer__bottom a:hover {
    color: var(--white);
}
