/* =========================================================
   Tirrea Billings — Main Stylesheet
   Brand: Rust #935626 | Olive #565325 | Cream #F3ECD9
          Burnt Orange #DA8A27 | Dark #332F2E
   Fonts: Playfair Display (headings) | Lato (body)
   ========================================================= */

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

:root {
  --rust:   #935626;
  --olive:  #565325;
  --cream:  #F3ECD9;
  --burnt:  #DA8A27;
  --dark:   #332F2E;
  --cream2: #fdf8ee;
  --line:   #ddd4be;
  --hero-bg: #935626;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  padding-top: 70px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* UTILITIES */
.label {
  font-size: .65rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--burnt);
  display: block; margin-bottom: .9rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem); font-weight: 700;
  line-height: 1.12; color: var(--rust); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--olive); }
.body-copy {
  font-size: 1rem; font-weight: 300; line-height: 1.95;
  color: var(--dark); margin-bottom: 1rem; max-width: 560px;
}

/* BUTTONS */
.btn-rust {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--rust); color: #fff;
  padding: .8rem 2rem; border: 2px solid var(--rust); transition: all .3s;
}
.btn-rust:hover { background: var(--olive); border-color: var(--olive); color: #fff; }

.btn-ghost {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  background: transparent; color: var(--rust);
  padding: .8rem 2rem; border: 2px solid var(--rust); transition: all .3s;
}
.btn-ghost:hover { background: var(--rust); color: #fff; }

.btn-olive {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  background: transparent; color: #fff;
  padding: .8rem 2rem; border: 1px solid var(--burnt); transition: all .3s;
}
.btn-olive:hover { background: var(--burnt); color: var(--dark); }

.btn-white-ghost {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  background: transparent; color: #fff;
  padding: .8rem 2rem; border: 2px solid rgba(255,255,255,.5); transition: all .3s;
}
.btn-white-ghost:hover { background: rgba(255,255,255,.15); }

/* NAV */
nav#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 70px;
  background: var(--cream); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
nav#site-nav.stuck { box-shadow: 0 2px 20px rgba(51,47,46,.1); }
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 900; color: var(--rust);
}
.nav-name span { color: var(--olive); font-style: italic; }
.nav-name img { height: 44px; width: auto; }
#primary-menu { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
#primary-menu a {
  font-size: .65rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dark);
  position: relative; padding-bottom: 2px;
}
#primary-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--burnt); transition: width .3s;
}
#primary-menu a:hover::after,
#primary-menu .current-menu-item a::after { width: 100%; }
#primary-menu .current-menu-item a { color: var(--rust); }

/* MARQUEE */
.marquee-bar { background: var(--dark); overflow: hidden; padding: .7rem 0; display: flex; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-item {
  font-size: .62rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(243,236,217,.4);
  padding: 0 2.5rem; flex-shrink: 0;
}
.marquee-item b { color: var(--burnt); margin: 0 .8rem; }

/* PAGE BANNER */
.page-banner {
  background: var(--rust); color: #fff;
  padding: 7rem 7rem 4rem; position: relative; overflow: hidden;
}
.page-banner::before {
  content: attr(data-letter);
  font-family: 'Playfair Display', serif;
  font-size: 22rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,.07); position: absolute;
  right: 2rem; top: -3rem; pointer-events: none;
}
.page-banner .label { color: rgba(243,236,217,.6); }
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 900;
  line-height: 1; color: #fff;
}
.page-banner h1 em { color: var(--burnt); font-style: italic; }
.page-banner p {
  font-size: 1.1rem; font-style: italic;
  color: rgba(255,255,255,.7); margin-top: 1rem;
  max-width: 520px; line-height: 1.7;
}

/* QUOTE STRIP */
.quote-strip {
  background: var(--burnt); padding: 4rem 10vw;
  text-align: center; position: relative; overflow: hidden;
}
.quote-strip::before {
  content: '\201C'; font-family: 'Playfair Display', serif;
  font-size: 18rem; color: rgba(255,255,255,.12);
  position: absolute; top: -3rem; left: 2rem;
  line-height: 1; pointer-events: none;
}
.quote-strip blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem); color: #fff;
  line-height: 1.6; max-width: 780px; margin: 0 auto 1rem;
  position: relative; z-index: 1;
}
.quote-attr {
  font-size: .63rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  position: relative; z-index: 1;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
#site-footer {
  background: var(--dark); color: rgba(243,236,217,.4);
  padding: 2.5rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--cream); }
.footer-name em { color: var(--burnt); font-style: italic; }
#footer-menu { display: flex; gap: 1.8rem; list-style: none; margin: 0; padding: 0; }
#footer-menu a {
  font-size: .6rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(243,236,217,.35); transition: color .2s;
}
#footer-menu a:hover { color: var(--burnt); }
.footer-copy { font-size: .6rem; letter-spacing: .08em; }

/* HOME PAGE */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 70px); }
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3.5rem 5rem 7rem;
  position: relative; overflow: hidden; background: var(--cream2);
}
.hero-left::before {
  content: 'T'; font-family: 'Playfair Display', serif;
  font-size: 24rem; font-weight: 900; line-height: 1;
  color: var(--line); opacity: .5;
  position: absolute; top: -2rem; left: -1rem; pointer-events: none;
}
.hero-name-block {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 900;
  line-height: .95; color: var(--rust);
  position: relative; z-index: 1;
  animation: fadeUp .8s .15s ease both;
}
.hero-name-block span { display: block; color: var(--olive); font-style: italic; }
.hero-descriptor {
  font-size: 1rem; font-style: italic; color: var(--olive);
  letter-spacing: .08em; margin-top: 1rem; margin-bottom: 2rem;
  position: relative; z-index: 1;
  animation: fadeUp .8s .25s ease both;
  border-left: 3px solid var(--burnt); padding-left: 1rem;
}
.hero-intro {
  font-size: 1.1rem; line-height: 1.85; color: var(--dark);
  max-width: 420px; margin-bottom: 2.5rem;
  position: relative; z-index: 1;
  animation: fadeUp .8s .35s ease both;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  position: relative; z-index: 1;
  animation: fadeUp .8s .45s ease both;
}
.hero-right {
  position: relative; overflow: hidden;
  background: var(--hero-bg, var(--rust));
  animation: fadeIn 1.2s .2s ease both;
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-right::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
.hero-placeholder {
  width: 100%; height: 100%; min-height: 500px;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 2rem;
}
.hero-placeholder span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* Home: About Strip */
.home-about { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; background: var(--cream); }
.home-about-img { position: relative; overflow: hidden; min-height: 480px; }
.home-about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s; }
.home-about-img:hover img { transform: scale(1.04); }
.home-about-frame {
  position: absolute; bottom: 2.5rem; right: -1rem;
  width: 55%; height: 54%; border: 3px solid var(--burnt); z-index: 2; pointer-events: none;
}
.home-about-placeholder {
  width: 100%; height: 100%; min-height: 480px; background: var(--olive);
  display: flex; align-items: center; justify-content: center;
}
.home-about-placeholder span { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.home-about-content { padding: 5rem 5rem 5rem 6rem; display: flex; flex-direction: column; justify-content: center; }

/* Home: Feature Cards */
.feature-cards { background: var(--dark); padding: 5rem 5vw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(243,236,217,.1);
  padding: 2.5rem 2rem; transition: all .3s; display: block;
}
.feature-card:hover { border-color: var(--burnt); background: rgba(218,138,39,.06); transform: translateY(-4px); }
.fc-label { font-size: .6rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--burnt); margin-bottom: 1rem; }
.fc-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; color: var(--cream); margin-bottom: 1rem; line-height: 1.2; }
.fc-body { font-size: .95rem; color: rgba(243,236,217,.55); line-height: 1.7; }
.fc-arrow { margin-top: 1.5rem; color: var(--burnt); font-size: .8rem; font-weight: 700; }

/* Home: Contact Strip */
.contact-strip { background: var(--olive); color: var(--cream); padding: 5rem 10vw; text-align: center; }
.contact-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 3rem); color: var(--cream); margin-bottom: .8rem; }
.contact-strip p { font-size: 1.1rem; font-style: italic; color: rgba(243,236,217,.7); margin-bottom: 2.5rem; }
.contact-links { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.contact-links a { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(243,236,217,.6); transition: color .2s; }
.contact-links a:hover { color: var(--burnt); }

/* ABOUT PAGE */
.about-wrap { display: grid; grid-template-columns: 5fr 7fr; min-height: 80vh; background: var(--cream2); }
.about-img-col { position: relative; overflow: hidden; min-height: 600px; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-img-placeholder {
  width: 100%; height: 100%; min-height: 600px; background: var(--olive);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder span { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.about-frame {
  position: absolute; bottom: 2.5rem; right: -1rem;
  width: 55%; height: 50%; border: 3px solid var(--burnt); z-index: 2; pointer-events: none;
}
.about-text-col { padding: 5rem 5rem 5rem 6rem; display: flex; flex-direction: column; justify-content: center; }
.about-values { background: var(--rust); padding: 5rem 5vw; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.value-card { border-top: 3px solid var(--burnt); padding-top: 1.5rem; }
.value-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(255,255,255,.12); line-height: 1; margin-bottom: .5rem; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: .8rem; font-style: italic; }
.value-body { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* NEWSLETTER PAGE */
.pu-hero {
  background: var(--dark); padding: 5rem 7rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; overflow: hidden;
}
.pu-hero::before {
  content: 'pu'; font-family: 'Playfair Display', serif;
  font-size: 20rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,.04); position: absolute;
  right: -2rem; bottom: -3rem; pointer-events: none;
}
.pu-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 900;
  font-style: italic; color: var(--cream); line-height: .95; margin-bottom: 1.5rem;
}
.pu-desc { font-size: 1.05rem; line-height: 1.9; color: rgba(243,236,217,.7); margin-bottom: 1rem; max-width: 500px; }
.pu-subscribe { background: rgba(255,255,255,.04); border: 1px solid rgba(243,236,217,.1); padding: 3rem; position: relative; z-index: 1; }
.pu-subscribe h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: .5rem; font-style: italic; }
.pu-subscribe p { font-size: .9rem; color: rgba(243,236,217,.5); margin-bottom: 1.5rem; }
.pu-subscribe iframe { width: 100%; border: 1px solid rgba(243,236,217,.15) !important; background: rgba(255,255,255,.05) !important; }
.press-section { background: var(--cream2); padding: 5rem 5vw; }
.press-inner { max-width: 900px; margin: 0 auto; }
.press-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.press-card { background: var(--cream); border: 1px solid var(--line); padding: 2rem; transition: all .3s; display: block; }
.press-card:hover { border-color: var(--burnt); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(147,86,38,.08); }
.press-pub { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--burnt); margin-bottom: .6rem; }
.press-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--rust); line-height: 1.3; font-style: italic; }
.press-arrow { margin-top: 1rem; font-size: .75rem; font-weight: 700; color: var(--olive); }

/* PHOTOGRAPHY PAGE */
.photo-intro { padding: 4rem 5vw 2rem; max-width: 700px; margin: 0 auto; text-align: center; }
.gallery-section { padding: 2rem 2vw 5rem; background: var(--cream); }
.masonry { columns: 3; gap: .8rem; max-width: 1200px; margin: 0 auto; }
.masonry-item { break-inside: avoid; margin-bottom: .8rem; overflow: hidden; background: var(--line); }
.masonry-item img { width: 100%; display: block; transition: transform .5s ease; }
.masonry-item:hover img { transform: scale(1.05); }
.gallery-empty { text-align: center; padding: 5rem 2rem; }
.gallery-empty p { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--rust); font-style: italic; margin-bottom: 1rem; }
.gallery-empty small { font-size: 1rem; color: var(--dark); }
.photo-cta-section { background: var(--dark); padding: 5rem 5vw; text-align: center; }
.photo-cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem,3vw,3rem); color: var(--cream); margin-bottom: 1rem; }
.photo-cta-section p { font-size: 1.05rem; color: rgba(243,236,217,.6); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* CV PAGE */
.cv-wrap { max-width: 960px; margin: 0 auto; padding: 5rem 2rem; }
.cv-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px solid var(--line); }
.cv-name { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--rust); line-height: 1; }
.cv-name span { display: block; font-size: 1rem; font-family: 'Lato', sans-serif; font-style: italic; color: var(--olive); margin-top: .5rem; font-weight: 300; letter-spacing: .05em; }
.cv-contact { text-align: right; font-size: .88rem; line-height: 1.9; color: var(--dark); }
.cv-contact a { color: var(--burnt); }
.cv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.cv-section { margin-bottom: 3rem; }
.cv-section-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--rust); text-transform: uppercase; letter-spacing: .1em; border-bottom: 2px solid var(--burnt); padding-bottom: .5rem; margin-bottom: 1.5rem; }
.cv-item { margin-bottom: 1.5rem; padding-left: 1rem; border-left: 2px solid var(--line); }
.cv-item-title { font-weight: 700; font-size: .98rem; color: var(--dark); margin-bottom: .15rem; }
.cv-item-org { font-size: .88rem; color: var(--rust); font-style: italic; }
.cv-item-date { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--burnt); margin: .2rem 0; }
.cv-item-desc { font-size: .9rem; color: #6a5a50; line-height: 1.65; margin-top: .4rem; }
.cv-skills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.cv-skill { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--line); color: var(--dark); padding: .3rem .8rem; }
.cv-download-bar { background: var(--rust); padding: 2.5rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.cv-download-bar p { font-size: 1.05rem; color: rgba(255,255,255,.8); font-style: italic; }

/* BLOG / SINGLE / PAGE */
.site-main { padding: 4rem 5vw; max-width: 1100px; margin: 0 auto; }
.entry-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 3rem); color: var(--rust); margin-bottom: 1.5rem; }
.entry-content { font-size: 1.1rem; line-height: 1.9; max-width: 720px; }
.entry-content p { margin-bottom: 1.2rem; }
.entry-content h2, .entry-content h3 { font-family: 'Playfair Display', serif; color: var(--rust); margin: 2rem 0 1rem; }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav#site-nav { padding: 0 1.5rem; }
  #primary-menu { gap: 1.2rem; }
  .hero, .home-about, .about-wrap, .pu-hero { grid-template-columns: 1fr; }
  .hero-left { padding: 4rem 2rem 3rem; }
  .hero-left::before { font-size: 14rem; }
  .hero-right { min-height: 60vw; }
  .hero-right::after { background: none; }
  .home-about-img, .home-about-placeholder { min-height: 320px; }
  .home-about-content { padding: 3rem 2rem; }
  .about-img-col, .about-img-placeholder { min-height: 350px; }
  .about-text-col { padding: 3rem 2rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .pu-hero { padding: 4rem 2rem 3rem; }
  .press-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .cv-grid { grid-template-columns: 1fr; }
  .cv-contact { text-align: left; }
  .page-banner { padding: 5rem 2rem 3rem; }
  #site-footer { flex-direction: column; text-align: center; }
  #footer-menu { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  #primary-menu { gap: .8rem; }
  #primary-menu a { font-size: .58rem; letter-spacing: .08em; }
  .masonry { columns: 1; }
  .hero-cta { flex-direction: column; }
}
