/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --tc: #CF8B68;
    --tc-lt: #FAECE7;
    --tc-dk: #712B13;
    --rb: #658C9F;
    --black: #1a1a1a;
    --gray-mid: #555;
    --gray-lt: #888;
    --border: #e5e5e5;
    --surface: #f7f5f2;
    --white: #ffffff;
    --green-lt: #EAF3DE;
    --green-dk: #3B6D11;
    --green-txt: #27500A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--black);
    background: var(--white);
    font-size: 14px;
    line-height: 1.7;
}

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

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

ul,
ol {
    list-style: none;
}

/* ============================================
   LAYOUT WRAPPER
   Nav and footer span full width.
   Sections constrain content to 900px.
   ============================================ */
.inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 22px;
    border: none;
    text-decoration: none;
    transition: opacity 0.15s;
    font-family: inherit;
}

.btn:hover {
    opacity: 0.82;
}

.btn-primary {
    background: var(--tc);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--gray-mid);
    border: 0.5px solid #ccc;
}

.btn-sm {
    padding: 7px 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ============================================
   NAV
   ============================================ */
#nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 0.5px solid var(--border);
    z-index: 100;
    transition: box-shadow 0.2s;
}

#nav.scrolled {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
}

#nav .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.nav-logo-block {
    display: flex;
    align-items: center;
}

.nav-logo {
    font-size: 14px;
    font-weight: 500;
    margin-left: 0.75em;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 13px;
    color: #666;
    transition: color 0.15s;
}

.nav-links a:not(.btn):hover {
    color: var(--black);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    border-bottom: 0.5px solid var(--border);
}

.hero .inner {
    padding-top: 64px;
    padding-bottom: 0;
    text-align: center;
}

.eyebrow-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--tc);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.05;
    margin: 0 auto 20px;
    max-width: 620px;
}

.hero h1 em {
    font-style: italic;
    color: var(--rb);
}

.hero-rule {
    border: none;
    border-top: 1.5px solid var(--tc);
    width: 40px;
    margin: 0 auto 20px;
}

.hero-sub {
    font-size: 15px;
    color: var(--gray-mid);
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 440px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 44px;
}

/* Logo stage — full bleed below CTAs */
.logo-stage {
    background: var(--surface);
    border-top: 0.5px solid var(--border);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SECTIONS — shared
   ============================================ */
.section {
    border-bottom: 0.5px solid var(--border);
}

.section .inner {
    padding-top: 60px;
    padding-bottom: 60px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.eyebrow-rule {
    height: 0.5px;
    background: var(--border);
    width: 32px;
}

.eyebrow span {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--tc);
    text-transform: uppercase;
}

.section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
}

.section h2 em {
    font-style: italic;
    color: var(--rb);
}

.section-sub {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
}

/* ============================================
   SERVICES
   ============================================ */
.wix-bar {
    background: #fef3eb;
    border: 0.5px solid var(--tc);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 28px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wix-icon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    margin-top: 3px;
}

.wix-body {
    flex: 1;
    min-width: 0;
}

.wix-lede {
    font-size: 13px;
    color: var(--tc-dk);
    line-height: 1.6;
    margin-bottom: 14px;
}

.wix-close {
    font-size: 13px;
    color: var(--tc-dk);
    line-height: 1.6;
    margin-top: 14px;
}

.wix-compare {
    display: flex;
    gap: 15vw;
    justify-content: flex-start;
}

.wix-col-label {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-lt);
    margin-bottom: 3px;
}

.wix-col-label em {
    font-style: normal;
}

.wix-col-cost {
    font-size: 16px;
    font-weight: 600;
    color: var(--tc-dk);
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.wix-col-right .wix-col-cost {
    color: var(--green-dk);
}

.wix-col-list li {
    font-size: 11px;
    color: var(--tc-dk);
    line-height: 1.5;
    margin-bottom: 3px;
    padding-left: 10px;
    position: relative;
}

.wix-col-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gray-lt);
}

.wix-col-right .wix-col-list li::before {
    content: '✓';
    color: var(--green-dk);
}

.wix-vs {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-lt);
    letter-spacing: 0.05em;
    align-self: center;
}

/* Mobile: stack the comparison columns */
@media (max-width: 600px) {
    .wix-bar {
        flex-direction: column;
        align-items: center;
    }

    .wix-icon {
        margin-top: 0;
    }


}

@media (max-width: 500px) {
    .wix-compare {
        flex-direction: column;
        gap: 16px;
    }

    .wix-vs {
        text-align: start;
        align-self: auto;
    }
}

/* Tier grid */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.tier-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
}

.tier-footnote {
    font-size: 11px;
    color: var(--green-txt);
    background: var(--green-lt);
    margin-top: 10px;
    line-height: 1.5;
    padding: 6px 10px;
    border-radius: 6px;
    border: 0.5px solid var(--green-txt);
}


/* Badges */
.badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    align-self: flex-start;
}

.badge-t1 {
    background: var(--green-lt);
    color: var(--green-txt);
}

.badge-t2 {
    background: var(--green-dk);
    color: var(--green-lt);
}

.badge-t3 {
    background: var(--black);
    color: #f0f0f0;
}

.tier-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.tier-ideal {
    font-size: 11px;
    color: var(--gray-lt);
    margin-bottom: 10px;
    line-height: 1.5;
}

.tier-price {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 2px;
}

.tier-time {
    font-size: 11px;
    color: var(--gray-lt);
    margin-bottom: 10px;
}

.tier-divider {
    border: none;
    border-top: 0.5px solid var(--border);
    margin: 8px 0;
}

.tier-list {
    flex: 1;
}

.tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.4;
}

.tier-list li::before {
    content: '✓';
    color: var(--green-dk);
    font-size: 13px;
    margin-top: 1px;
    flex-shrink: 0;
}

.tier-note {
    font-size: 11px;
    color: var(--gray-lt);
    margin-top: auto;
    padding-top: 10px;
    line-height: 1.5;
    font-style: italic;
}

.admin-card {
    background: var(--green-lt);
    border-radius: 12px;
    border: 0.5px solid var(--green-txt);
    padding: 20px 22px;
    margin-bottom: 16px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.admin-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 3px;
}

.admin-sub {
    font-size: 11px;
    color: var(--gray-lt);
    font-style: italic;
}

.admin-price-block {
    text-align: right;
    /* test */
    /* background: #eeebe7; */
    border-radius: 8px;
    padding: 8px 12px;
    margin-left: 16px;
    flex-shrink: 0;
}

.admin-price {
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}

.admin-price-from {
    font-size: 13px;
    font-weight: 400;
}

.admin-price-sub {
    font-size: 11px;
    color: var(--gray-lt);
}

.admin-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.admin-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    line-height: 1.4;
}

.admin-list li::before {
    content: '✓';
    color: var(--green-dk);
    flex-shrink: 0;
}

/* Info note */
.info-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 10px 14px;
    background: var(--surface);
    border-radius: 8px;
    font-size: 12px;
    color: var(--gray-lt);
}

.info-note span {
    color: var(--tc);
    flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.grey-background {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-areas:
        "photo h2"
        "photo text";
    column-gap: 32px;
    row-gap: 16px;
}

.about-photo {
    grid-area: photo;
}

.about-h2 {
    grid-area: h2;
}

.about-text {
    grid-area: text;
}

.about-photo {
    width: 90px;
    height: 110px;
    background: #f0ede8;
    border-radius: 8px;
    border: 0.5px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
}

.about-text p {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.75;
    margin-bottom: 14px;
}

blockquote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.55;
    border-left: 2.5px solid var(--rb);
    padding-left: 16px;
    margin: 22px 0;
    color: var(--black);
}

.portfolio-link {
    font-size: 13px;
    color: var(--rb);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.portfolio-link:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-sub {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.75;
    margin-bottom: 28px;
}

.expect-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.expect-num {
    font-size: 11px;
    font-weight: 500;
    color: var(--tc);
    min-width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-block {
    background: var(--surface);
    border-radius: 12px;
    padding: 28px;
    border: 0.5px solid var(--border);
}

.cta-block-tag {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--tc);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-block-h {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}

.cta-block-sub {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-block .btn {
    margin-bottom: 16px;
}

.divider-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.divider-line {
    flex: 1;
    height: 0.5px;
    background: var(--border);
}

.divider-row span {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--rb);
}

.email-link:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--surface);
    border-top: 0.5px solid var(--border);
}

footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.footer-sub {
    font-size: 11px;
    color: var(--gray-lt);
}

.footer-copy {
    font-size: 11px;
    color: #aaa;
}

.footer-portfolio-link {
  color: #aaa;
  text-decoration: none;
}

.footer-portfolio-link:hover {
  text-decoration: underline;
}

/* ============================================
   HAMBURGER — hidden on desktop
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--black);
    border-radius: 2px;
    transform: transform 0.2s, opacity 0.2s;
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {

    /* Nav — hamburger */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 0.5px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 20px 16px;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a:not(.btn) {
        padding: 10px 0;
        width: 100%;
        border-bottom: 0.5px solid var(--border);
    }

    .nav-links .btn {
        margin-top: 12px;
    }

    hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    transition: transform 0.2s, opacity 0.2s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

    .inner {
        padding: 0 20px;
    }

    /* Hero */
    .hero .inner {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    /* Tiers — single column */
    .tiers-grid {
        grid-template-columns: 1fr;
    }

    /* About — photo + h2 side by side bottom-aligned, text full width below */
    .about-grid {
        grid-template-columns: 90px 1fr;
        grid-template-areas:
            "photo h2"
            "text  text";
        align-items: end;
        row-gap: 20px;
    }

    .about-h2 {
        font-size: 22px;
        align-self: end;
    }

    /* Contact — stacked, CTA block ends up at bottom naturally */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section h2 {
        font-size: 28px;
    }

}

@media (max-width: 490px) {
    .wix-compare {
        flex-direction: column;
        gap: 16px;
    }

    .admin-list {
        grid-template-columns: 1fr;
    }

    .admin-header {
        flex-direction: column;
        gap: 8px;
    }

    .admin-price-block {
        background: none;
        padding: 0;
        text-align: left;
        margin-left: 0;
    }

    footer .inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}