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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #123036;
    background: #f4ede1; /* light cream to match logo */
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #0a6963;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 92%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fdf7ec;
    border-bottom: 1px solid rgba(7, 51, 54, 0.12);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    font-size: 1rem;
    color: #073336;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #4b7077;
}

.main-nav {
    display: flex;
    gap: 0.6rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    background: #0a6963;
    color: #ffffff;
}

/* Hero */

.hero {
    padding: 4rem 0 3rem;
    background: radial-gradient(circle at top left, rgba(10, 105, 99, 0.18), transparent),
                #f4ede1;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 2.7vw, 2.7rem);
    margin-bottom: 1rem;
    color: #073336;
}

.hero p {
    max-width: 640px;
    margin-bottom: 0.9rem;
    color: #123036;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #0a6963, #0f877f);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(7, 51, 54, 0.25);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(7, 51, 54, 0.35);
}

.btn.ghost {
    background: #fdf7ec;
    color: #0a6963;
    border: 1px solid rgba(10, 105, 99, 0.3);
}

.btn.ghost:hover {
    background: #e7f5f3;
}

.btn.full-width {
    width: 100%;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.hero-badges span {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #e7f5f3;
    color: #0a6963;
    border: 1px solid rgba(10, 105, 99, 0.28);
}

.hero-panel {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 18px 45px rgba(7, 51, 54, 0.16);
}

.hero-panel h2 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.hero-panel p {
    font-size: 0.9rem;
    color: #4b5563;
}

.enquiry-form {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #123036;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

input,
select,
textarea {
    padding: 0.6rem 0.7rem;
    border-radius: 0.6rem;
    border: 1px solid #d0c6b8;
    font: inherit;
    outline: none;
    transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    background: #fdfaf4;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0a6963;
    box-shadow: 0 0 0 1px rgba(10, 105, 99, 0.18);
    background: #ffffff;
}

.form-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.35rem;
}

/* Sections */

.section {
    padding: 3.25rem 0;
}

.section.muted {
    background: #f0e6d7;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #073336;
}

.section-intro {
    max-width: 640px;
    margin-bottom: 1.8rem;
    color: #4b7077;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: start;
}

/* Lists & cards */

.tick-list {
    list-style: none;
    margin-top: 1rem;
}

.tick-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.tick-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0a6963;
    font-weight: 700;
}

.highlight-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 16px 40px rgba(7, 51, 54, 0.12);
    font-size: 0.95rem;
}

.highlight-card h3 {
    margin-bottom: 0.6rem;
    color: #073336;
}

.highlight-card ul {
    margin-left: 1rem;
    margin-bottom: 0.75rem;
}

.highlight-card li {
    margin-bottom: 0.3rem;
}

.small {
    font-size: 0.85rem;
    color: #4b7077;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 16px 40px rgba(7, 51, 54, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.card h3 {
    font-size: 1.05rem;
    color: #073336;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.2rem;
    font-size: 0.8rem;
}

.tag-list li {
    list-style: none;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #e7f5f3;
    color: #0a6963;
}

/* Contact & forms */

.contact-details {
    list-style: none;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-details li {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.contact-form {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 16px 40px rgba(7, 51, 54, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

/* Footer */

.site-footer {
    background: #073336;
    color: #dbe7e7;
    padding: 1.4rem 0;
    margin-top: 1rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.site-footer .small {
    color: #9fb5b7;
}

/* Responsive */

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .hero-inner,
    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-panel {
        order: -1;
    }
}
