/* ================  BASIC RESET  ================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, Roboto, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #274d79;
    /* deep navy */
    background: #f8fafc;
}

/* ---------- Utility wrappers ---------- */
.container {
    width: min(92%, 1100px);
    margin-inline: auto;
}

.flex {
    display: flex;
}

.between {
    justify-content: space-between;
}

.center {
    text-align: center;
}

.items-c {
    align-items: center;
}

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

/* ================  TYPOGRAPHY  ================= */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.25;
    color: #0d3753;
}

h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
}

h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: .75rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
}

p,
li {
    font-size: 1.05rem;
}

ul {
    list-style: none;
    padding: 0;
}

/* ================  BUTTONS  ================= */
.btn-primary {
    background: #165a8b;
    color: #fff;
    padding: .55rem 1.3rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background: #0d3753;
}

.btn-secondary {
    background: #e9f4ff;
    color: #165a8b;
    padding: .55rem 1.3rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.btn-secondary:hover {
    background: #d8ebff;
}

/* ================  HEADER / NAV  ================= */
.site-header {
    background: #165a8b;
    color: #fff;
}

.logo {
    font-size: 1.4rem;
    padding: .75rem 0;
    font-weight: 700;
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.6rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* ================  HERO  ================= */
.hero {
    background: #e4f1fa url('../img/sample-1.jpg') center/cover no-repeat;
    color: #0d3753;
    padding: 6rem 0 4rem;
}

.hero h2 {
    margin-bottom: .5rem;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ================  SECTIONS  ================= */
section {
    padding: 4rem 0;
}

.section-alt {
    background: #f6fbff;
}

.about p {
    max-width: 60ch;
    margin-bottom: 1rem;
}

.two-col {
    columns: 2 250px;
    column-gap: 2rem;
}

.notice {
    margin-bottom: 1rem;
    font-style: italic;
}

/* ================  SERVICES  ================= */
.price-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 2rem 0;
}

.price-grid article {
    background: #fff;
    border: 1px solid #dbe3ec;
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
}

.price-grid h3 {
    margin-bottom: .5rem;
    font-size: 1.15rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
}

.price small {
    font-size: .6em;
    font-weight: 400;
}

/* ================  GALLERY  ================= */
.grid-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    /* every “card” 200 px tall */
    grid-auto-flow: dense;
    /* let items back-fill gaps */
}

.grid-gallery figure {
    margin: 0;
}

.grid-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crop without distortion */
    display: block;
    border-radius: 4px;
}

/* ================  FOOTER  ================= */
.site-footer {
    background: #165a8b;
    color: #fff;
    padding: 2rem 0;
}

.site-footer .portrait {
    width: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 1rem;
}

.site-footer p {
    margin-bottom: .75rem;
}

.site-footer .promo a {
    display: inline-block;
    background: #b1d6f1;
    /* light accent */
    color: #274d79;
    /* navy text for contrast */
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    /* pill shape */
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.site-footer .promo a:hover {
    background: #d0e6ff;
}

.site-footer .promo a:visited {
    color: #274d79;
}

/* prevent purple */

/* ── CONTACT BLOCK SPACING ───────────────────────── */
.contact p {
    margin: 0 0 1.2rem;
}

.contact .btn-primary,
.contact .btn-secondary {
    display: inline-block;
    margin: .3rem .4rem 0;
}

/* ================  MEDIA QUERIES  ================= */
/* Mobile menu toggle */
@media (max-width: 800px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: #165a8b;
        flex-direction: column;
        align-items: flex-start;
        width: 13rem;
        padding: 1rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .25s ease-in-out;
    }

    .nav-links.show {
        transform: scaleY(1);
    }
}

/* === Stand-alone portrait of Rhona & Hannah === */
.team-together {
    /* section wrapper */
    padding: 3rem 0 2rem;
}

.team-photo {
    /* the image itself */
    width: 100%;
    /* responsive */
    max-width: 420px;
    /* nice size on big screens */
    height: auto;
    /* no cropping */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
}

/* ===== Inline pricing disclaimer ===== */
.note {
    color: #fa6b40;
    /* deep red – pick any colour */
    font-style: italic;
    /* optional, matches the asterisk tone */
    font-weight: 700;
    /* 400 = regular, 700 = bold */

    margin-top: .25rem;
    /* tiny breathing room */
}

/* ===== Services list card ===== */
.services-card {
    background: #ffffff;
    /* white card */
    border-left: 4px solid #165a8b;
    /* navy accent bar */
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .06);
}

/* Reset default bullets & add custom checkmarks */
.tasks {
    list-style: none;
    /* remove discs */
    margin: .5rem 0 0;
    /* tighten space */
    padding-left: 0;
}

.tasks li {
    position: relative;
    padding-left: 1.8rem;
    /* room for icon */
    margin-bottom: .4rem;
}

.tasks li::before {
    content: '\2713';
    /* Unicode checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: #165a8b;
    /* same navy as site */
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1rem;
    /* vertically center */
}
