/* =============================================
   Peatcutter's Croft — original design
   Aesthetic: Scottish Highlands, earthy greens,
   natural stone textures, clean but warm
============================================= */

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

:root {
    --moss:      #3a5a40;
    --stone:     #7a6e62;
    --heather:   #6d4c7a;
    --sky:       #4a7fa5;
    --cream:     #f7f3ed;
    --peat:      #2b211a;
    --warm-rule: #d4c9b4;
    --text:      #2e2a25;
    --muted:     #7a7060;
    --sans:      Verdana, Geneva, sans-serif;
    --serif:     Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--sans);
    font-size: 0.9rem;
    line-height: 1.75;
    background: var(--cream);
    color: var(--text);
}

a {
    color: var(--moss);
    text-decoration: none;
}
a:hover { text-decoration: underline; }

/* ── Site header ── */
.site-header {
    background: var(--peat);
    color: white;
    padding: 0;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.4rem 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.brand h1 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: normal;
    color: white;
    letter-spacing: 0.02em;
}

.tagline {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* ── Nav ── */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}

.main-nav a {
    display: inline-block;
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.9rem 1.4rem;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
    border-bottom-color: #8fbc8f;
}

/* ── Page sections ── */
.page {
    display: none;
    min-height: calc(100vh - 160px);
}

.page.active {
    display: block;
}

/* ── 2-column layout ── */
.layout-2col {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.col-main {
    flex: 1 1 0;
    min-width: 0;
}

.col-side {
    width: 260px;
    flex-shrink: 0;
}

/* ── 3-column layout ── */
.layout-3col {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.col-a, .col-b {
    flex: 1 1 0;
    min-width: 0;
}

.col-c {
    width: 200px;
    flex-shrink: 0;
}

/* ── Headings ── */
h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--moss);
    border-bottom: 2px solid var(--warm-rule);
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--stone);
    margin: 1.2em 0 0.4em;
}

p { margin-bottom: 0.8em; }

/* ── Blockquote ── */
blockquote {
    background: var(--moss);
    color: white;
    font-style: italic;
    font-family: var(--serif);
    font-size: 0.88rem;
    padding: 1em 1.2em;
    margin-bottom: 1rem;
    border-left: 4px solid #8fbc8f;
    line-height: 1.6;
}

/* ── Quick facts ── */
.quick-facts {
    margin-top: 1.5rem;
    background: white;
    border: 1px solid var(--warm-rule);
    padding: 1rem 1.2rem;
}

.quick-facts h3 {
    color: var(--moss);
    margin-top: 0;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.quick-facts ul {
    list-style: none;
    padding: 0;
}

.quick-facts li {
    font-size: 0.82rem;
    color: var(--text);
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--warm-rule);
}

.quick-facts li:last-child { border-bottom: none; }

/* ── Rates table ── */
.phone-num {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--moss);
    font-family: var(--serif);
    margin-bottom: 1.2rem;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.rates-table th {
    background: var(--moss);
    color: white;
    text-align: left;
    padding: 0.6rem 0.8rem;
    font-weight: bold;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rates-table td {
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--warm-rule);
}

.rates-table tr:nth-child(even) td { background: rgba(0,0,0,0.03); }
.rates-table td:last-child { font-weight: bold; color: var(--moss); text-align: right; }

.note-text {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
}

.award {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--stone);
}

/* ── Find Us ── */
.map-placeholder {
    background: var(--peat);
    color: white;
    padding: 1.5rem 1.2rem;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.82rem;
    line-height: 1.8;
}

.map-placeholder span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ── Contact form ── */
.contact-form {
    margin-top: 1rem;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    font-size: 0.78rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stone);
    margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea,
.form-row select {
    display: block;
    width: 100%;
    max-width: 460px;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--warm-rule);
    background: white;
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--moss);
}

.form-row textarea { resize: vertical; }

.contact-form button {
    padding: 0.7rem 2rem;
    background: var(--moss);
    color: white;
    border: none;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #2e4830;
}

/* ── Contact info box ── */
.contact-info {
    background: white;
    border: 1px solid var(--warm-rule);
    padding: 1.2rem 1.4rem;
}

.contact-info h3 {
    font-size: 0.85rem;
    color: var(--moss);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    margin-top: 0;
}

.contact-info p {
    font-size: 0.83rem;
    line-height: 1.6;
    color: var(--text);
}

.contact-info a {
    color: var(--moss);
}

/* ── Site footer ── */
.site-footer {
    background: var(--peat);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 1.2rem 2.5rem;
    font-size: 0.75rem;
    line-height: 1.8;
}

.site-footer a {
    color: rgba(255,255,255,0.65);
}
