/* ============================================================
   Fine Art Photography Prints — Site Styles
   Fonts: Cormorant Garamond (headings) + Lato (body)
   Layout: Editorial Gallery

   Accessibility: WCAG AA compliant
   - Minimum font size: 0.8rem (12.8px) for decorative labels
   - Body text: 1rem (16px)
   - --text (#2c2c2c) on --bg (#faf9f7): 13.5:1
   - --text-soft (#505050) on --bg (#faf9f7): 7.6:1
   - --accent (#6b5744) on --bg (#faf9f7): 6.5:1
   - --accent (#6b5744) on --bg-warm (#f1eeea): 5.9:1
   ============================================================ */

:root {
  --bg: #faf9f7;
  --bg-warm: #f1eeea;
  --bg-white: #ffffff;
  --text: #2c2c2c;
  --text-soft: #505050;
  --accent: #6b5744;
  --border: #e0dcd7;
  --heading: 'Cormorant Garamond', Georgia, serif;
  --body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { transition: color 0.2s; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  text-align: center;
  padding: 0.6rem 1rem;
  background: var(--bg-warm);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.topbar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
}
.topbar a:hover { text-decoration: underline; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  padding: 1.5rem 0 1rem;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.nav-top {
  text-align: center;
  margin-bottom: 0.8rem;
}
.nav-top .brand {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
}
.nav-top .tagline {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.15rem;
}
.nav-toggle {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.nav-links .nav-link {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.4rem 0.9rem !important;
  transition: color 0.2s;
}
.nav-links .nav-link:hover { color: var(--accent); }

.site-nav .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 0.5rem 0;
  background: var(--bg);
}
.site-nav .dropdown-item {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.5rem;
  color: var(--text-soft);
}
.site-nav .dropdown-item:hover {
  background: var(--bg-warm);
  color: var(--accent);
}

/* ============================================================
   HERO — Split layout (homepage)
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.hero-image {
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: var(--bg-warm);
}
.hero-text-inner { max-width: 420px; }
.hero-text-inner .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-text-inner h1 {
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-text-inner p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 2rem;
}
.btn-outline {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--text);
  color: var(--text);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow,
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.section-header h2 {
  font-family: var(--heading);
  font-size: 2.4rem;
  font-weight: 400;
}

/* ============================================================
   COLLECTION GRID (homepage)
   ============================================================ */
.featured-strip {
  padding: 5rem 0;
}
.collection-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.collection-row.two-col { grid-template-columns: 1fr 1fr; }
.collection-row.three-col { grid-template-columns: 1fr 1fr 1fr; }

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.collection-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.collection-card:hover img { transform: scale(1.03); }
.collection-card .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.collection-card .card-info h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.2rem;
}
.collection-card .card-info span {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   CREDENTIALS BAR
   ============================================================ */
.credentials {
  padding: 4rem 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credentials-inner {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  text-align: center;
}
.credential-item .number {
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 300;
  display: block;
  color: var(--text);
  line-height: 1.2;
}
.credential-item .label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-editorial {
  padding: 3rem 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-editorial .inner {
  max-width: 1800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.about-editorial .eyebrow {
  margin-bottom: 1rem;
}
.about-editorial h2 {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.about-editorial p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
}

/* ============================================================
   GALLERY PAGE — Photo grid
   ============================================================ */
.page-header {
  text-align: center;
  padding: 3.5rem 0 1rem;
}
.page-header h1 {
  font-family: var(--heading);
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.page-header .subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.page-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
  padding: 0 1rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 1.5rem 4rem;
  max-width: 1800px;
  margin: 0 auto;
}
.photo-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}
.photo-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.photo-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card .photo-label {
  padding: 1rem 0.8rem;
  text-align: center;
}
.photo-card .photo-label h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
}

/* ============================================================
   DETAIL PAGE — Single print
   ============================================================ */
.detail-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  text-align: center;
}
.detail-hero img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.detail-info {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}
.detail-info h1 {
  font-family: var(--heading);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.detail-info .location {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.detail-info .photo-id {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.detail-info .description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.detail-info .meta-item {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

/* Print pricing section */
.pricing-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 1.5rem;
}
.pricing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pricing-inner h2 {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.pricing-inner h3 {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.pricing-inner .pricing-note {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
}
.pricing-inner .pricing-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  text-align: left;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.pricing-table th {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 400;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.pricing-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: none; }

.contact-cta {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  text-align: center;
  margin-top: 2rem;
}
.contact-cta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
}
.contact-cta a:hover { text-decoration: underline; }

/* Related prints */
.related-section {
  padding: 4rem 0;
}
.related-section .section-header {
  margin-bottom: 2.5rem;
}

/* ============================================================
   PAGE CONTENT — below-gallery copy area
   ============================================================ */
.page-content {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border);
}
.page-content-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-content-inner h2 {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 2rem 0 0.8rem;
}
.page-content-inner h3 {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 1.8rem 0 0.6rem;
}
.page-content-inner p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.page-content-inner a {
  color: var(--accent);
  text-decoration: none;
}
.page-content-inner a:hover {
  text-decoration: underline;
}
.page-content-inner:empty {
  display: none;
}

/* ============================================================
   INFO PAGES — articles, about, print types, etc.
   ============================================================ */
.info-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.info-page h1 {
  font-family: var(--heading);
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
}
.info-page h2 {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 2rem 0 0.8rem;
}
.info-page h3 {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 1.5rem 0 0.6rem;
}
.info-page p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.info-page a {
  color: var(--accent);
  text-decoration: none;
}
.info-page a:hover {
  text-decoration: underline;
}
.info-page img {
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  margin: 1.5rem 0;
}
.info-page ul, .info-page ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-soft);
  line-height: 1.85;
}
.info-page li {
  margin-bottom: 0.4rem;
}

/* Email signup form styling */
#mc_embed_signup {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 2px;
}
#mc_embed_signup h2 {
  font-family: var(--heading) !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  text-align: center;
  margin-bottom: 1rem;
}
#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  background: var(--bg-white);
}
#mc_embed_signup label {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
  display: block;
}
#mc_embed_signup .button,
#mc_embed_signup input[type="submit"] {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin-top: 0.5rem;
}
#mc_embed_signup .button:hover,
#mc_embed_signup input[type="submit"]:hover {
  background: var(--text);
  color: var(--bg);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb-bar {
  padding: 1rem 1.5rem 0;
  max-width: 1800px;
  margin: 0 auto;
}
.breadcrumb-bar ol {
  list-style: none;
  display: flex;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.breadcrumb-bar li { color: var(--text-soft); }
.breadcrumb-bar li + li::before {
  content: "/";
  margin-right: 0.3rem;
  color: var(--border);
}
.breadcrumb-bar a {
  color: var(--text-soft);
  text-decoration: none;
}
.breadcrumb-bar a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg);
}
.footer-nav {
  margin-bottom: 1rem;
}
.footer-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }
.site-footer .copy {
  font-size: 0.875rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.site-footer .copy a {
  color: var(--text-soft);
  text-decoration: none;
}
.site-footer .copy a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-image { max-height: 50vh; }
  .hero-text { padding: 3rem 2rem; }
  .hero-text-inner h1 { font-size: 2.4rem; }
  .collection-row.three-col { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .hero-text-inner h1 { font-size: 2rem; }
  .collection-row.two-col,
  .collection-row.three-col { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem 3rem; }
  .nav-top .brand { font-size: 1.4rem; }
  .credentials-inner { gap: 2.5rem; }
  .detail-info h1 { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .info-page { padding: 1.5rem 1rem 3rem; }
  .info-page h1 { font-size: 1.8rem; }
}
