@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
    --color-navy: #0b1f4a;
    --color-gold: #c8a15a;
    --color-white: #ffffff;
    --color-off-white: #f8f9fa;
    --color-text: #2d3748;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;

    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;

    --container-width: 1100px;
    --radius: 12px;
    --shadow: 0 12px 30px rgba(11, 31, 74, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-off-white);
    line-height: 1.6;
}

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

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

.container {
    width: min(100% - 32px, var(--container-width));
    margin: 0 auto;
}

.page-placeholder {
    min-height: 55vh;
    padding: 96px 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    line-height: 1.08;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5rem);
}

p {
    margin: 0 0 16px;
}
.hero {
    min-height: 58vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 72px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--color-off-white) 100%);
}

.hero-logo {
    width: min(220px, 75%);
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.hero-divider {
    width: 100%;
    max-width: 1200px;   /* same as your .container */
    height: 1px;
    margin: 0 auto 3rem;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-gold) 12%,
        var(--color-gold) 88%,
        transparent
    );
}

.hero h1 {
    max-width: 820px;
    margin: 0 auto 20px;
}

.hero-text {
    max-width: 620px;
    margin: 0 auto 32px;
    color: var(--color-muted);
    font-size: 1.15rem;
}

.hero-button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 10px;
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-button:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
}
.features {
    padding: 80px 0;
    background: var(--color-white);
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid rgba(17, 38, 81, 0.08);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 24px rgba(17, 38, 81, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: 0 14px 40px rgba(17, 38, 81, 0.12);
}

.feature-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: var(--color-gold);
}

.icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background:rgba(200, 161, 90, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper .feature-icon {
    width: 32px;
    height: 32px;
    margin: 0;
}

.feature-card h3 {
    font-size: 1.65rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--color-muted);
    margin-bottom: 0;
}
.contact-section {
    padding: 96px 0;
    background: var(--color-off-white);
}

.contact-container {
    max-width: 680px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro p {
    color: var(--color-muted);
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 20px;
    background: var(--color-white);
    padding: 32px;
    border: 1px solid rgba(17, 38, 81, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(17, 38, 81, 0.08);
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--color-navy);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.contact-form button {
    justify-self: start;
    padding: 14px 24px;
    border: 0;
    border-radius: 10px;
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 700;
    cursor: pointer;
}

.response-note {
    color: var(--color-gold);
    font-weight: 700;
}

.service-area {
    margin-top: 48px;
    text-align: center;
    background: var(--color-white);
    padding: 32px;
    border: 1px solid rgba(17, 38, 81, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(17, 38, 81, 0.08);
}

.service-area h2 {
    margin-bottom: 12px;
}

.service-area p {
    color: var(--color-muted);
    margin-bottom: 0;
}