/* ========================================================================
   WHITTIER FENCE — MAIN STYLESHEET
   ========================================================================

   CONTENTS
   1. Variables / brand controls
   2. Reset and base typography
   3. Shared layout helpers
   4. Buttons
   5. Fixed header and navigation
   6. Teal banner headings
   7. About section
   8. Services
   9. Gallery
  10. Testimonials
  11. Why choose us / CTA
  12. Contact and footer
  13. Responsive breakpoints
  14. Quote request form
  15. Mobile layout
   ======================================================================== */


/* ========================================================================
   1. VARIABLES / QUICK BRAND CONTROLS
   Change these first when tuning the design.
   ======================================================================== */

:root {
    --teal: #25b997;
    --teal-dark: #288166;
    --teal-pale: #b7e7da;
    --teal-pale-2: #effaf7;

    --ink: #231f20;
    --ink-soft: #514a4b;
    --white: #ffffff;
    --off-white: #fbfbfa;
    --line: #b7ded6;

    --page-width: 1320px;
    --page-gutter: clamp(20px, 3vw, 48px);
    --section-space: clamp(48px, 6vw, 86px);

    /* site.js updates this to the real header height. */
    --header-height: 112px;

    --font-logo: "Baskerville Old Face", Baskerville, "Times New Roman", serif;
    --font-serif: Baskerville, "Baskerville Old Face", Georgia, serif;
    --font-sans: "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;

    --shadow-small: 0 4px 14px rgb(0 0 0 / 0.10);
    --shadow-medium: 0 10px 30px rgb(0 0 0 / 0.12);
    --transition: 180ms ease;
}


/* ========================================================================
   2. RESET AND BASE TYPOGRAPHY
   ======================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-sans);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.15;
}

h1 {
    font-size: clamp(1.35rem, 2.1vw, 2rem);
}

h2 {
    font-size: clamp(1.65rem, 2.5vw, 2.55rem);
}

h3 {
    font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

/* Keeps a clicked section heading below the fixed header. */
section[id] {
    scroll-margin-top: calc(var(--header-height) + 14px);
}


/* ========================================================================
   3. SHARED LAYOUT HELPERS
   ======================================================================== */

.page-width {
    width: min(100% - (var(--page-gutter) * 2), var(--page-width));
    margin-inline: auto;
}

.page-section {
    background: var(--white);
}

.page-section:not(.page-section--about):not(.page-section--services) {
    padding-block: var(--section-space);
}

.page-section--tinted {
    background:
        linear-gradient(90deg, var(--teal-pale-2), var(--white), var(--teal-pale-2));
}

.header-spacer {
    height: var(--header-height);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    margin-bottom: 10px;
    color: var(--teal-dark);
    font-family: var(--font-sans);
    font-weight: 600;
}

.section-heading__line {
    display: block;
    width: min(330px, 65%);
    height: 2px;
    background: linear-gradient(90deg, var(--teal), transparent);
}


/* ========================================================================
   4. BUTTONS
   ======================================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 2px solid var(--teal-dark);
    color: var(--white);
    background: var(--teal-dark);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.button:hover,
.button:focus-visible {
    color: var(--teal-dark);
    background: var(--white);
    transform: translateY(-2px);
}

.button--header {
    white-space: nowrap;
}

.button--large {
    width: 100%;
    min-height: 58px;
    font-size: 1.08rem;
}


/* ========================================================================
   5. FIXED HEADER AND NAVIGATION
   ======================================================================== */

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    background: rgb(255 255 255 / 0.97);
    /*border-bottom: 3px solid var(--teal);*/
    box-shadow: 0 3px 14px rgb(0 0 0 / 0.08);
    backdrop-filter: blur(8px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 108px;
    padding-block: 14px;
}

/*
 * The real logo is used as an image.
 * No font or visual effects are applied to the logo artwork itself.
 */
.site-logo {
    display: block;
    flex: 0 1 470px;
    max-width: 470px;
}

.site-logo img {
    width: 100%;
    max-height: 78px;
    object-fit: contain;
    object-position: left center;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.primary-nav a {
    position: relative;
    padding: 10px 14px;
    font-family: var(--font-serif);
    text-decoration: none;
    white-space: nowrap;
}

.primary-nav a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24%;
    width: 1px;
    height: 52%;
    background: var(--ink-soft);
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
    transform: scaleX(1);
}

/* Mobile menu button; hidden until the tablet breakpoint. */
.nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}

.nav-toggle__bars {
    display: grid;
    gap: 4px;
}

.nav-toggle__bars span {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
}


/* ========================================================================
   6. TEAL BANNER HEADINGS
   ======================================================================== */

.section-banner {
    position: relative;
    margin-inline: clamp(14px, 2vw, 28px);
    color: var(--white);
    background: var(--teal);
    border-bottom: 4px solid var(--white);
	border-top: 9px solid var(--white);
}

.section-banner h2,
.section-banner p {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    font-weight: 400;
    line-height: 1;
}
 
/* Decorative fence-post-shaped notch. */
.section-banner::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    width: 42px;
    height: 16px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 1;
}

.section-banner .page-width {
    padding-block: 10px;
}

.section-banner h2,
.section-banner p {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    font-weight: 400;
}

.section-banner--tagline {
    margin-bottom: clamp(20px, 3vw, 32px);
}


/* ========================================================================
   7. ABOUT SECTION
   ======================================================================== */

.page-section--about {
    padding-top: 0;
    padding-bottom: clamp(20px, 3vw, 55px);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 2fr);
    align-items: start;
    gap: clamp(0px, 2.5vw, 34px);
}

.about-layout__image {
    position: relative;
    z-index: 2;
    border: 2px solid var(--ink);
    background: var(--off-white);
    box-shadow: var(--shadow-small);
}

.about-layout__image img {
    width: 100%;
    aspect-ratio: 1.46 / 1;
    object-fit: cover;
}

.about-layout__content {
    min-width: 0;
}

.about-highlight {
    margin-left: -1px;
    padding: clamp(16px, 2vw, 25px) clamp(18px, 3vw, 34px);
    color: var(--white);
    background: var(--ink);
}

.about-highlight h1 {
    margin-bottom: 9px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.about-highlight p {
    margin-bottom: 0;
}

.prose {
    padding: clamp(12px, 1.8vw, 24px);
    font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.prose p:last-child {
    margin-bottom: 0;
}


/* ========================================================================
   8. SERVICES
   ======================================================================== */

.page-section--services {
    padding-bottom: var(--section-space);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 38px);
    padding-top: clamp(34px, 4vw, 54px);
}

.service-card {
    min-width: 0;
}

.service-card__image {
    position: relative;
    overflow: hidden;
    background: var(--teal-pale);
    box-shadow: var(--shadow-small);
    clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
}

.service-card__image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: rgb(255 255 255 / 0.82);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.service-card__image img {
    width: 100%;
    aspect-ratio: 1.52 / 1;
    object-fit: cover;
    transition: transform 300ms ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.025);
}

.service-card__content {
    padding-top: 16px;
}

.service-card h3 {
    margin-bottom: 5px;
    color: var(--teal-dark);
    font-family: var(--font-sans);
    font-weight: 500;
}

.service-card p {
    margin: 0;
    color: var(--ink-soft);
}


/* ========================================================================
   9. GALLERY
   ======================================================================== */

#gallery {
    overflow: hidden;
}

#gallery .page-width {
    overflow: hidden;
}


.gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    padding-bottom: 15px;
}

.gallery-item {
    flex: 0 0 320px;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    filter: brightness(1.05);
    transform: scale(1.04);
}

/* ========================================================================
   GALLERY LIGHTBOX
   ======================================================================== */

.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.gallery-modal.is-open {
    display: block;
}

.gallery-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.75);
}

.gallery-modal__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(92vw, 1100px);
    height: 92vh;
    margin: 4vh auto;
}

.gallery-modal__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 4px solid var(--white);
}

.gallery-modal__close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--white);
    color: var(--ink);
    font-size: 2rem;
    cursor: pointer;
}

.gallery-modal__prev,
.gallery-modal__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 0;
    background: var(--white);
    color: var(--ink);
    font-size: 2rem;
    cursor: pointer;
}

.gallery-modal__prev {
    left: 15px;
}

.gallery-modal__next {
    right: 15px;
}

.gallery-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
}


/* ========================================================================
   10. TESTIMONIALS
   ======================================================================== */

/*toggle visibility*/
#testimonials {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
}

.testimonial-card {
    position: relative;
    margin: 0;
    padding: clamp(24px, 3vw, 38px);
    border: 2px solid var(--line);
    background: var(--white);
    box-shadow: 0 5px 18px rgb(0 0 0 / 0.05);
}

.testimonial-card::before,
.testimonial-card::after {
    position: absolute;
    color: var(--teal-pale);
    font-family: Georgia, serif;
    font-size: 5.5rem;
    line-height: 1;
}

.testimonial-card::before {
    content: "“";
    top: 6px;
    left: 12px;
}

.testimonial-card::after {
    content: "”";
    right: 12px;
    bottom: -16px;
}

.testimonial-card__stars {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    color: var(--teal-dark);
    letter-spacing: 0.1em;
}

.testimonial-card blockquote {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    font-family: var(--font-serif);
    font-style: italic;
}

.testimonial-card figcaption {
    display: grid;
    gap: 2px;
    color: var(--ink-soft);
}

.testimonial-card figcaption strong {
    color: var(--teal-dark);
}


/* ========================================================================
   11. WHY CHOOSE US / CTA
   ======================================================================== */

.why-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    align-items: stretch;
    gap: clamp(30px, 4vw, 54px);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.reason-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding-right: 15px;
    border-right: 1px solid var(--line);
}

.reason-card:last-child {
    border-right: 0;
}

.reason-card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    aspect-ratio: 1;
    border-radius: 50%;
    color: var(--white);
    background: var(--teal);
    font-size: 1.55rem;
    font-weight: 700;
}

.reason-card h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.reason-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.quote-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 3vw, 36px);
    border: 2px solid var(--teal);
    background: rgb(255 255 255 / 0.78);
    box-shadow: var(--shadow-small);
}

.quote-card h2 {
    margin-bottom: 12px;
    color: var(--teal-dark);
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.quote-card p {
    margin-bottom: 24px;
}


/* ========================================================================
   12. CONTACT AND FOOTER
   ======================================================================== */


.picket-divider {
    height: 32px;
    background-image: url(../images/fence.png);
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: auto 33px;
    transform: translateY(-31px);
    margin-bottom: -31px;
}

.contact-section {
    color: var(--white);
    background: var(--ink);
}

.contact-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 28px;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-inline: clamp(15px, 3vw, 45px);
    font-size: 0.95rem;
}

.contact-item + .contact-item {
    border-left: 2px solid rgb(255 255 255 / 0.25);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--teal);
}

.contact-icon {
    display: block;
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer {
    color: var(--white);
    background: #171415;
    border-top: 1px solid rgb(255 255 255 / 0.16);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 18px;
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--teal);
}




/* ========================================================================
   13. RESPONSIVE BREAKPOINTS
   ======================================================================== */

@media (max-width: 1120px) {
    .site-header__inner {
        min-height: 98px;
    }

    .site-logo {
        flex-basis: 360px;
        max-width: 360px;
    }

    .site-header__actions {
        gap: 14px;
    }

    .primary-nav a {
        padding-inline: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

	.gallery-grid {
    	display: flex;
   	 	flex-wrap: nowrap;
  	  	gap: 20px;
 	   	overflow-x: auto;
    	scroll-snap-type: x mandatory;
    	padding-bottom: 15px;
    	min-width: 0;
	}

	.gallery-item {
    	flex: 0 0 320px;
    	scroll-snap-align: start;
	}

.page-width {
    min-width: 0;
}

	.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
	}

    .reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reason-card:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 860px) {
    .site-header__inner {
        position: relative;
        min-height: 84px;
    }

    .site-logo {
        flex-basis: min(68vw, 360px);
        max-width: min(68vw, 360px);
    }

    .site-logo img {
        max-height: 60px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        padding: 10px;
    }

    .site-header__actions {
        position: absolute;
        top: 100%;
        left: calc(var(--page-gutter) * -1);
        right: calc(var(--page-gutter) * -1);
        display: none;
        align-items: stretch;
        padding: 18px var(--page-gutter) 24px;
        background: var(--white);
        border-top: 1px solid var(--line);
        border-bottom: 3px solid var(--teal);
        box-shadow: var(--shadow-medium);
    }

    .site-header.nav-open .site-header__actions {
        display: grid;
        gap: 15px;
    }

    .primary-nav {
        display: grid;
    }

    .primary-nav a {
        padding: 13px 5px;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav a + a::before {
        display: none;
    }

    .primary-nav a::after {
        left: 5px;
        right: auto;
        width: 55px;
    }

    .button--header {
        width: 100%;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-layout__image {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .about-highlight {
        margin-top: 22px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    :root {
        --page-gutter: 18px;
    }

    .nav-toggle__label {
        display: none;
    }

    .section-banner {
        margin-inline: 8px;
    }

    .section-banner::before {
        left: 12px;
    }

    .section-banner h2,
    .section-banner p {
        font-size: 1.45rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card,
    .reason-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 0 0 18px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-links {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .site-logo {
        flex-basis: 72vw;
        max-width: 72vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ========================================================================
   QUOTE REQUEST FORM
   ======================================================================== */

.quote-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.quote-modal.is-open {
    display: block;
}

.quote-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .65);
}

.quote-modal__box {
    position: relative;
    width: min(90%, 600px);
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
    padding: 35px;
    background: var(--white);
    color: var(--ink);
}

.quote-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: 0;
    background: none;
    font-size: 2rem;
    cursor: pointer;
}

.quote-form {
    display: grid;
    gap: 24px;
    max-width: 900px;
}

.quote-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.quote-form label {
    display: grid;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgb(0 0 0 / 0.25);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    font-size: 1rem;
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: 2px solid var(--teal);
    outline-offset: 1px;
}

.quote-form .button {
    justify-self: start;
}

/* Hidden spam trap */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Confirmation message */
.form-success {
    margin-bottom: 20px;
    padding: 14px 18px;
    color: var(--ink);
    background: var(--teal-pale);
    border-left: 4px solid var(--teal);
}



/* ========================================================================
   MOBILE LAYOUT
   ======================================================================== */

@media (max-width: 700px) {
	
	 .section-banner::before {
        width: 20px;
        height: 8px;
    }
	
	.section-banner h2,
    .section-banner p {
        font-size: 1.35rem;
        line-height: 1.15;
    }
	
	 .section-heading h2 {
        font-size: 1.35rem;
    }

    /* General spacing */
    :root {
        --page-gutter: 16px;
    }

    /* Header */
    .site-header__inner {
        padding-inline: 16px;
    }

    .site-logo img {
        width: 280px;
        height: auto;
    }


    /* Stack desktop layouts */
    .about-layout,
    .why-layout,
    .contact-layout {
        display: block;
    }


    /* About section */
    .about-layout {
        background: var(--teal-pale);
    }

    .about-layout__image {
        margin-bottom: 0;
    }

    .about-highlight {
        padding: 18px;
    }

    .prose {
        padding: 18px;
    }


    /* Services */
    .service-card {
        display: block;
    }

    .service-card__image img {
        width: 100%;
        height: auto;
    }


    /* Gallery */
    .gallery-item {
        flex: 0 0 85%;
    }


    /* Contact */
    .contact-layout {
        padding-block: 30px;
    }

    .contact-item {
        padding: 15px 0;
    }

    .contact-item + .contact-item {
        border-left: 0;
        border-top: 1px solid rgb(255 255 255 / .25);
    }


    /* Quote card */
    .quote-card {
        margin-top: 30px;
    }

}
