/* =============================================================================
   THEME: Teal & Ember — Components
   Identical structure to Soft Editorial. All colour references use CSS
   variables so the teal/orange palette flows through automatically.
   ============================================================================= */

/* --- Buttons --- */
.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: var(--transition);
}
.btn-nav:hover { background: var(--primary-mid); }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-primary:hover { background: var(--primary-mid); transform: translateY(-1px); }
.btn-secondary:hover { color: var(--secondary); }

.btn-book {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-align: center;
    transition: var(--transition);
    width: 100%;
}
.btn-book:hover { background: var(--primary-mid); }

/* --- Philosophy: pull-quote, no card --- */
.philosophy-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.philosophy-card::before {
    content: '\201C';
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    line-height: 0.6;
    color: var(--secondary);
    opacity: 0.25;
    margin-bottom: 1.5rem;
}

.philosophy-card h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 2rem; color: var(--primary); }

.philosophy-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
    text-align: left;
}

/* --- Philosophy Details --- */
.detail-block { margin-bottom: 2rem; }

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.detail-column {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.detail-column h3 {
    color: var(--secondary);
    font-size: 0.78rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.detail-column p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }

/* --- Statement Box: large centered italic quote --- */
.statement-box {
    margin-top: 4rem;
    padding: 2rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    font-style: italic;
    color: var(--primary);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-align: center;
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.statement-box::before,
.statement-box::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--secondary);
    margin: 0 auto 1.5rem;
}
.statement-box::after { margin: 1.5rem auto 0; }

/* --- Styled Lists --- */
.styled-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.styled-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-size: 1rem;
}

.styled-list li::before {
    content: "·";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: 0.1em;
    font-weight: 700;
}

/* --- Interests --- */
.interests-container {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.interests-container p { margin: 0 auto 1.5rem; text-align: center; color: var(--text-muted); }
.interests-header { margin-bottom: 1.5rem; }
.interests-header .section-title { text-align: center; }

.interest-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
}

.interest-list li {
    font-size: 1.05rem;
    color: var(--text-main);
    padding: 0.875rem 0 0.875rem 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.interest-list li:last-child { border-bottom: none; }

.interest-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    transition: transform 0.2s;
}

.interest-list li:hover::before { transform: translateX(3px); }

/* --- Services: no card --- */
.single-offering-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    max-width: 680px;
    margin: 0 auto;
    border: none;
    box-shadow: none;
}

.offering-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.offering-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.5rem 0; color: var(--primary); }

.offering-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }

.offering-body { display: flex; flex-direction: column; gap: 2.5rem; }

.offering-pricing {
    background: transparent;
    padding: 2rem 0;
    border-radius: 0;
    text-align: center;
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.price-details .label {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 1.25rem;
}

.price-details .value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

.tailored-callout {
    margin-top: 1.5rem;
    padding: 0;
    border: none;
    background: transparent;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
}

/* --- About --- */
.about-image-side { flex: 0 0 auto; display: flex; justify-content: center; }

.profile-frame { position: relative; width: 180px; height: 180px; }

.profile-frame::before {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.4;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 77, 77, 0.12);
}

.about-text-side { flex: 1; text-align: center; }
.about-text-side .badge { color: var(--secondary); }

.bio-content p { margin-bottom: 1.25rem; font-size: 1.05rem; color: var(--text-muted); line-height: 1.9; text-align: left; }

.personal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: left;
}

/* --- Contact Form --- */
#contact-container {
    max-width: 560px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-header { text-align: center; margin-bottom: 3rem; }

.contact-header h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.75rem; color: var(--primary); }
.contact-header p { color: var(--text-muted); font-size: 1rem; }
.contact-header span { color: var(--primary); font-weight: 700; }

#contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.input-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

#contact-form input,
#contact-form select,
#contact-form textarea {
    padding: 0.875rem 0;
    border: none;
    border-bottom: 1.5px solid var(--border);
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    background: transparent;
    color: var(--text-main);
    transition: border-color 0.2s;
    width: 100%;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

#submit-btn {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Source Sans Pro', sans-serif;
    align-self: center;
    min-width: 200px;
}

#submit-btn:hover { background: var(--primary-mid); transform: translateY(-1px); }

.form-disclaimer { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

#success-message { text-align: center; padding: 3rem 0; animation: fadeIn 0.5s ease; }
.success-content h3 { color: var(--primary); font-size: 1.6rem; margin: 0.75rem 0; }
.success-content p { color: var(--text-muted); }
.success-content .icon { font-size: 2.5rem; color: var(--primary); }
.emergency-note { margin-top: 1rem; font-size: 0.85rem; color: #b94040; font-weight: 700; }

/* Legacy */
.spec-item { margin-bottom: 1rem; }
.spec-value { font-size: 2rem; font-weight: 700; color: var(--primary); }
.spec-label { display: block; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.18em; color: var(--secondary); font-weight: 700; margin-bottom: 0.4rem; }
.spec-group { margin-bottom: 1.25rem; }
.full-width { width: 100%; text-align: center; margin-top: 1rem; }
.flagship-tag { color: var(--secondary); text-transform: uppercase; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.15em; }
.interest-item { padding: 1rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; font-weight: 600; color: var(--primary); }

/* =============================================================================
   Responsive
   ============================================================================= */

@media (min-width: 480px) {
    .input-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .detail-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .offering-body { flex-direction: row; align-items: flex-start; gap: 4rem; }
    .offering-info { flex: 1.2; }
    .offering-pricing { flex: 0.8; border-top: none; border-left: 1px solid var(--border); border-bottom: none; padding: 0 0 0 2.5rem; }
    .btn-book { width: auto; }
    .profile-frame { width: 200px; height: 200px; }
    .about-text-side { text-align: left; }
}
