:root {
    --color-dark: #112334;
    --color-dark-alt: #162c40;
    --color-light: #fbf9f4;
    --color-beige: #f5f0e1;
    --color-white: #ffffff;
    --color-gold: #c2a675;
    --color-text-dark: #2d3748;
    --color-text-light: #ffffff;
    --color-text-muted: #a0aec0;
    
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-dark);
    overflow-x: hidden;
    padding-top: 70px;
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark-alt);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    padding: 0 2rem;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.nav-logo {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-white);
}
.nav-tabs {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-tab {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.5rem 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    opacity: 0.8;
}
.nav-tab:hover {
    color: var(--color-gold);
    opacity: 1;
}
.nav-tab.active {
    color: var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
    opacity: 1;
}

/* Typography */
h1, h2, h3, h4, .serif-title {
    font-family: var(--font-serif);
    font-weight: 700;
}

.large-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.medium-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.small-title {
    font-size: 1.5rem;
    line-height: 1.4;
}

.text-block {
    font-size: 1.125rem;
    line-height: 1.6;
}

.small-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.dark-text {
    color: var(--color-dark);
}

.gold-text {
    color: var(--color-gold);
}

/* Utilities */
.relative { position: relative; }
.z-10 { z-index: 10; }
.mb-small { margin-bottom: 0.5rem; }
.mb-medium { margin-bottom: 1.5rem; }
.mb-large { margin-bottom: 3rem; }
.mt-medium { margin-top: 1.5rem; }
.mt-large { margin-top: 3rem; }
.mt-xlarge { margin-top: 5rem; }

/* Sections */
.section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 12%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dark-bg {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.section-light {
    background-color: var(--color-white);
    color: var(--color-text-dark);
}

.section-beige {
    background-color: var(--color-beige);
    color: var(--color-text-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Box */
.logo-box {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    display: inline-block;
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.logo-box.small-logo {
    padding: 1rem 1.5rem;
    margin-bottom: 0;
}

.logo-text-1 {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 400;
}

.logo-text-2 {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    color: #4a5d4e; /* greenish tint from logo */
}

.small-logo .logo-text-1, .small-logo .logo-text-2 {
    font-size: 1.25rem;
}

/* Labels */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.label-line-dot {
    height: 1px;
    width: 60px;
    background-color: var(--color-white);
    position: relative;
}

.label-line-dot::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 9px;
    height: 9px;
    background-color: var(--color-white);
    border-radius: 50%;
}

.gold-label {
    color: var(--color-gold);
}

.label-line-dot.gold, .label-line-dot.gold::after {
    background-color: var(--color-gold);
}

.no-line {
    margin-bottom: 1.5rem;
}

/* Headers */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.top-header .brand-top {
    text-transform: uppercase;
}

.top-header .page-num {
    font-weight: 700;
}

/* Background Graphics */
.bg-graphics {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.circle-solid {
    position: absolute;
    border-radius: 50%;
}

.circle-solid.top-right {
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background-color: #d8cba4; /* Light beige/gold solid circle */
}

.concentric-circles {
    position: absolute;
}

.concentric-circles .circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.concentric-circles.gold-lines .circle {
    border-color: rgba(194, 166, 117, 0.3);
}

.concentric-circles.bottom-right {
    bottom: -30%;
    right: -20%;
    width: 80vw;
    height: 80vw;
}

.concentric-circles.top-right {
    top: -20%;
    right: -30%;
    width: 80vw;
    height: 80vw;
}

.concentric-circles.right-center {
    top: 10%;
    right: -40%;
    width: 90vw;
    height: 90vw;
}

.concentric-circles.large {
    width: 120vw;
    height: 120vw;
    top: 0;
    right: -60%;
}

.circle.c1 { top: 0; left: 0; right: 0; bottom: 0; }
.circle.c2 { top: 15%; left: 15%; right: 15%; bottom: 15%; }
.circle.c3 { top: 30%; left: 30%; right: 30%; bottom: 30%; }

.line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.15);
    height: 1px;
}

.line.l1 {
    width: 50%;
    top: 50%;
    left: 10%;
    transform: rotate(20deg);
}
.line.l2 {
    width: 60%;
    top: 60%;
    left: 0;
    transform: rotate(-15deg);
}
.line.l3 {
    width: 80%;
    top: 40%;
    left: -10%;
    transform: rotate(35deg);
}

/* Page 1 Specific */
.hero-content {
    max-width: 800px;
}
.hero-tags {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 3rem;
    color: var(--color-gold);
}

/* Page 2 & 5 Specific (Boxes) */
.info-box {
    padding: 3rem;
    max-width: 800px;
    position: relative;
}
.gold-border-left {
    border-left: 10px solid var(--color-gold);
}
.gold-border-top {
    border-top: 10px solid var(--color-gold);
}
.box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.box-tags {
    color: var(--color-gold);
}
.box-link {
    color: var(--color-gold);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--color-gold);
}

/* Page 3 Specific */
.list-with-lines {
    border-top: 1px solid rgba(0,0,0,0.1);
    max-width: 900px;
}
.list-item {
    display: flex;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.list-item .item-number {
    font-size: 2.5rem;
    width: 80px;
    line-height: 1;
}
.list-item .item-content {
    flex: 1;
}
.list-item .item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    font-weight: 700;
}

/* Page 4 Specific */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
}
.grid-item .item-number {
    font-size: 2.5rem;
    line-height: 1;
}
.line-under {
    position: relative;
    padding-bottom: 2rem;
}
.line-under::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
}

/* Page 5 Specific */
.list-box {
    display: flex;
    flex-direction: column;
}
.box-list-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.box-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.box-list-item:first-child {
    padding-top: 0;
}
.box-list-item .item-number {
    font-size: 1.5rem;
    width: 60px;
}
.box-list-item .item-title-col {
    font-weight: 700;
    width: 150px;
    font-size: 1.1rem;
}
.box-list-item .item-desc-col {
    flex: 1;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}
.gold-tags {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-gold);
    text-transform: uppercase;
}

/* Page 6 Specific */
.contact-box {
    padding: 4rem;
    max-width: 800px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
}
.contact-details {
    font-size: 1.25rem;
    line-height: 1.8;
}
.contact-footer {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Footer Notes */
.footer-note {
    font-size: 0.8rem;
    position: absolute;
    bottom: 3rem;
}
.hero-footer {
    color: rgba(255,255,255,0.5);
}
.light-footer {
    color: rgba(0,0,0,0.4);
}
.final-footer {
    position: relative;
    bottom: 0;
}
.final-footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .section { padding: 4rem 8%; }
    .large-title { font-size: 2.8rem; }
    .medium-title { font-size: 2.2rem; }
    .grid-3-col { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .box-footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .box-list-item { flex-direction: column; }
    .box-list-item .item-title-col { margin-bottom: 0.5rem; }
}

@media (max-width: 768px) {
    .section { padding: 3rem 5%; }
    .large-title { font-size: 2.2rem; }
    .medium-title { font-size: 1.8rem; }
    .text-block { font-size: 1rem; }
    .list-item { flex-direction: column; }
    .list-item .item-number { margin-bottom: 0.5rem; }
    .info-box, .contact-box { padding: 2rem; }
}
