/* Site stylesheet — editorial earthy look cloned from hilaryjane.ca (Squarespace) */
:root {
  --cream: #eeecdc;
  --cream-2: #f0eddf;
  --charcoal: #2d2e26;
  --ink: #34342b;
  --ivory: #f7f0d8;
  --olive: #9b8d49;
  --accent: #d57b2e;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); }

/* announcement bar */
.announce {
  background: var(--cream-2); text-align: center; padding: 10px 16px;
  display: flex; flex-direction: column; gap: 2px;
  border-bottom: 1px solid rgba(52,52,43,.08);
}
.announce-main { font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.announce-sub { font-size: 12px; font-style: italic; color: rgba(52,52,43,.85); }

/* nav */
.nav { background: var(--charcoal); padding: 16px 4vw; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1200px; margin: 0 auto; }
.nav-brand { color: var(--ivory); text-decoration: none; font-family: var(--serif); font-size: 20px; letter-spacing: .08em; }
.nav-brand img { height: 34px; display: block; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; }
.nav-links a { color: var(--ivory); text-decoration: none; font-size: 13px; letter-spacing: .02em; opacity: .92; }
.nav-links a:hover { opacity: 1; color: var(--accent); }

/* hero */
.hero { position: relative; width: 100%; overflow: hidden; background: var(--charcoal); }
.hero > img { width: 100%; display: block; max-height: 82vh; object-fit: cover; }
.hero-logo-text {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--ivory); font-family: var(--serif); font-size: clamp(48px, 9vw, 130px);
  font-style: italic; font-weight: 400; letter-spacing: .02em;
  text-shadow: 0 2px 24px rgba(0,0,0,.35); text-align: center; padding: 0 4vw; line-height: 1.05;
}
.hero-logo-img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); max-width: 70vw; max-height: 60vh; width: auto; height: auto; }

/* intro */
.intro { max-width: 620px; margin: 0 auto; padding: 88px 24px 96px; text-align: center; }
.rule { width: 100%; max-width: 300px; height: 1px; background: rgba(52,52,43,.35); margin: 0 auto; }
.kicker { text-transform: uppercase; letter-spacing: .28em; font-size: 12px; margin-bottom: 28px; color: rgba(52,52,43,.75); }
.intro .kicker { margin-top: 26px; }
.intro p:not(.kicker) { font-family: var(--serif); font-size: 15.5px; line-height: 1.65; margin: 0 auto 18px; color: var(--ink); }
.intro p strong { font-weight: 700; }

/* portfolio tiles */
.portfolio { padding: 0 4vw 110px; max-width: 1400px; margin: 0 auto; }
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 44px); }
.tile { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; text-decoration: none; background: var(--cream-2); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, opacity .4s ease; }
.tile:hover img { transform: scale(1.03); }
.tile-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--ivory); font-family: var(--serif); text-transform: uppercase;
  font-size: clamp(16px, 2.2vw, 26px); letter-spacing: .22em; text-align: center; padding: 10%;
  text-shadow: 0 1px 22px rgba(0,0,0,.55), 0 0 40px rgba(0,0,0,.25);
  background: rgba(45,46,38,.2);
}
.tile:hover .tile-label { background: rgba(45,46,38,.32); }
@media (max-width: 760px) { .tiles { grid-template-columns: 1fr; } }

/* contact */
.contact { text-align: center; padding: 60px 24px 90px; }
.contact-body { font-family: var(--serif); font-size: 15px; line-height: 1.6; max-width: 520px; margin: 0 auto 18px; }
.contact-email a { color: var(--ink); font-size: 14px; letter-spacing: .04em; }
.contact-email a:hover { color: var(--accent); }
.contact-socials { margin-top: 22px; display: flex; gap: 26px; justify-content: center; }
.contact-socials a { color: var(--ink); font-size: 13px; letter-spacing: .06em; text-decoration: none; text-transform: lowercase; border-bottom: 1px solid transparent; }
.contact-socials a:hover { border-bottom-color: var(--ink); }

/* gallery page */
.gallery-page { max-width: 1200px; margin: 0 auto; padding: 70px 4vw 100px; }
.gallery-title { font-family: var(--serif); text-transform: uppercase; letter-spacing: .24em; font-size: 22px; text-align: center; margin-bottom: 50px; font-weight: 400; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.gallery-grid figcaption { font-size: 12px; letter-spacing: .06em; margin-top: 10px; color: rgba(52,52,43,.75); font-style: italic; }
.empty-note { text-align: center; font-style: italic; color: rgba(52,52,43,.6); padding: 60px 0; font-family: var(--serif); }

/* footer */
.foot { background: var(--olive); text-align: center; padding: 44px 20px 50px; }
.foot-links { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.foot-links a { color: var(--charcoal); font-size: 12.5px; letter-spacing: .04em; text-decoration: none; }
.foot-links a:hover { color: var(--ivory); }
.foot-copy { color: rgba(45,46,38,.85); font-size: 12px; letter-spacing: .02em; }
