/*
Theme Name: Gulf Coast Lens
Theme URI: https://www.gulfcoastlens.com/
Author: Cheyenne — Gulf Coast Lens
Description: Custom coastal photography theme for Gulf Coast Lens. Family photography in Sarasota and the Suncoast — editorial serif typography with a warm cream, terracotta, and sage palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: gulfcoastlens
*/

/* WordPress required helpers */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; font-style: italic; color: var(--brown); text-align: center; margin-top: 0.5rem; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
.sticky, .bypostauthor, .gallery-caption { display: block; }

  :root {
    --cream: #f5efe4;
    --cream-deep: #ede4d3;
    --sand: #e0d2b8;
    --tan: #c9a989;
    --terracotta: #b86b4b;
    --terracotta-deep: #8d4a30;
    --brown: #5a3921;
    --brown-deep: #3d2514;
    --sage: #8ca896;
    --sage-deep: #5d7868;
    --sage-soft: #a8bfb1;
    --water: #7ba0a8;
    --sun: #e9b961;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--brown-deep);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Grain texture overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.22 0 0 0 0 0.08 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ============ NAVIGATION ============ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    background: rgba(245, 239, 228, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 107, 75, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
  }

  .nav-logo {
    width: 38px;
    height: 38px;
  }

  .nav-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--brown-deep);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-link {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.25s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--terracotta-deep);
  }

  .nav-link.active::after,
  .nav-link:hover::after {
    width: 100%;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-deep);
    margin: 5px 0;
    transition: 0.3s;
  }

  /* ============ PAGES ============ */
  .page {
    display: none;
    min-height: 100vh;
    padding-top: 6rem;
    animation: fadeIn 0.6s ease;
  }

  .page.active {
    display: block;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============ HOME PAGE ============ */
  .hero {
    position: relative;
    min-height: calc(100vh - 6rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 3rem 6rem;
    align-items: center;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 2rem;
    font-weight: 500;
  }

  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--terracotta);
  }

  .hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 6.5vw, 5.8rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--brown-deep);
    margin-bottom: 2rem;
  }

  .hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta);
    font-variation-settings: "opsz" 144;
  }

  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--brown);
    max-width: 460px;
    margin-bottom: 2.5rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--brown-deep);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn::after {
    content: '→';
    transition: transform 0.3s ease;
  }

  .btn:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 107, 75, 0.3);
  }

  .btn:hover::after {
    transform: translateX(4px);
  }

  .btn-outline {
    background: transparent;
    color: var(--brown-deep);
    border: 1px solid var(--brown-deep);
  }

  .btn-outline:hover {
    background: var(--brown-deep);
    color: var(--cream);
  }

  /* Hero image collage */
  .hero-visual {
    position: relative;
    height: 600px;
  }

  .hero-img {
    position: absolute;
    background: var(--sand);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 37, 20, 0.15);
    transition: transform 0.5s ease;
  }

  .hero-img:hover {
    transform: translateY(-8px);
  }

  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-img-1 {
    top: 0;
    left: 0;
    width: 55%;
    height: 65%;
    z-index: 2;
  }

  .hero-img-2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    z-index: 3;
  }

  .hero-img-3 {
    top: 25%;
    right: 8%;
    width: 35%;
    height: 35%;
    z-index: 1;
  }

  .hero-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--cream);
    padding: 1.2rem 1.8rem;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(61, 37, 20, 0.12);
    z-index: 5;
  }

  .hero-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--terracotta);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
    margin-top: 0.3rem;
  }

  /* ============ SERVICES STRIP ============ */
  .services {
    padding: 6rem 3rem;
    background: var(--cream-deep);
    position: relative;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--terracotta);
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--brown-deep);
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
  }

  .section-title em {
    font-style: italic;
    color: var(--terracotta);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  @media (max-width: 1100px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  .service-card {
    padding: 3rem 2.25rem 2.75rem;
    background: var(--cream);
    border: 1px solid rgba(184, 107, 75, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(61, 37, 20, 0.08);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-num {
    font-family: 'Fraunces', serif;
    font-size: 0.85rem;
    color: var(--tan);
    font-style: italic;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
  }

  .service-title {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--brown-deep);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
  }

  .service-divider {
    width: 32px;
    height: 1px;
    background: var(--terracotta);
    margin-bottom: 1.25rem;
    opacity: 0.6;
  }

  .service-desc {
    font-size: 0.95rem;
    color: var(--brown);
    line-height: 1.75;
    letter-spacing: 0.005em;
  }

  /* ============ AREAS SERVED ============ */
  .areas {
    padding: 6rem 3rem;
    background: var(--cream);
    position: relative;
  }

  .areas-wrap {
    max-width: 1300px;
    margin: 0 auto;
  }

  .areas-intro {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    margin-bottom: 4rem;
    align-items: end;
  }

  .areas-intro-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .areas-intro-photo {
    width: 65%;
    max-width: 280px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(61, 37, 20, 0.15);
    border-radius: 2px;
    align-self: flex-end;
  }

  .areas-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .areas-intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--brown);
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(184, 107, 75, 0.2);
    border-left: 1px solid rgba(184, 107, 75, 0.2);
  }

  .area-item {
    padding: 2rem 1.75rem;
    border-right: 1px solid rgba(184, 107, 75, 0.2);
    border-bottom: 1px solid rgba(184, 107, 75, 0.2);
    transition: background 0.3s ease;
    cursor: default;
  }

  .area-item:hover {
    background: var(--cream-deep);
  }

  .area-name {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }

  .area-region {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
  }

  .areas-note {
    margin-top: 3rem;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--tan);
  }
  .inquiry {
    padding: 6rem 3rem;
    background: var(--sage-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .inquiry::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
  }

  .inquiry-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
  }

  .inquiry .section-label {
    color: var(--cream);
  }

  .inquiry .section-label::before {
    background: var(--cream);
  }

  .inquiry .section-title {
    color: var(--cream);
  }

  .inquiry .section-title em {
    color: var(--sun);
  }

  .inquiry-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245, 239, 228, 0.85);
    margin-bottom: 2.5rem;
  }

  .inquiry-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 239, 228, 0.2);
  }

  .info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .info-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, 0.7);
    min-width: 90px;
    padding-top: 0.2rem;
  }

  .info-value {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    color: var(--cream);
  }

  .form {
    display: grid;
    gap: 1.5rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .form-group {
    position: relative;
  }

  .form-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, 0.75);
    margin-bottom: 0.6rem;
    font-weight: 500;
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 239, 228, 0.3);
    padding: 0.75rem 0;
    color: var(--cream);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
  }

  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: none;
    border-bottom-color: var(--sun);
  }

  .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f5efe4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 2rem;
    cursor: pointer;
  }

  .form-select option {
    background: var(--sage-deep);
    color: var(--cream);
  }

  .form-textarea {
    resize: vertical;
    min-height: 100px;
    border: 1px solid rgba(245, 239, 228, 0.3);
    padding: 1rem;
  }

  .form-textarea:focus {
    border-color: var(--sun);
  }

  .form-submit {
    margin-top: 1rem;
    padding: 1.1rem 2.5rem;
    background: var(--terracotta);
    color: var(--cream);
    border: none;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }

  .form-submit:hover {
    background: var(--sun);
    color: var(--brown-deep);
    transform: translateY(-2px);
  }

  .form-submit::after {
    content: '→';
    transition: transform 0.3s ease;
  }

  .form-submit:hover::after {
    transform: translateX(4px);
  }

  .form-success {
    display: none;
    padding: 1.5rem;
    background: rgba(245, 239, 228, 0.15);
    border-left: 3px solid var(--sun);
    color: var(--cream);
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  /* ============ GALLERY PAGE ============ */
  .page-header {
    padding: 5rem 3rem 4rem;
    text-align: center;
    position: relative;
  }

  .page-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1;
    color: var(--brown-deep);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }

  .page-title em {
    font-style: italic;
    color: var(--terracotta);
  }

  .page-subtitle {
    font-size: 1.05rem;
    color: var(--brown);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 3rem 3rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(184, 107, 75, 0.3);
    color: var(--brown);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--cream);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 3rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--sand);
    cursor: pointer;
    transition: transform 0.4s ease;
  }

  .gallery-item:nth-child(3n+1) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(7n+4) {
    grid-column: span 2;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 37, 20, 0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--cream);
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-cat {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sun);
    margin-bottom: 0.4rem;
  }

  .gallery-caption {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 400;
  }

  /* ============ BLOG PAGE ============ */
  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 6rem;
  }

  .blog-featured {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(184, 107, 75, 0.2);
    align-items: center;
  }

  .blog-featured-img {
    height: 450px;
    background: var(--sand);
    overflow: hidden;
  }

  .blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-featured-content .post-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--terracotta);
    color: var(--cream);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .blog-featured-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--brown-deep);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }

  .blog-featured-content h2 em {
    font-style: italic;
    color: var(--terracotta);
  }

  .post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 1.5rem;
  }

  .post-excerpt {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--brown);
    margin-bottom: 2rem;
  }

  .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--terracotta-deep);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: gap 0.3s ease;
  }

  .read-more:hover {
    gap: 1rem;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .blog-card {
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-6px);
  }

  .blog-card-img {
    height: 280px;
    background: var(--sand);
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

  .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .blog-card:hover .blog-card-img img {
    transform: scale(1.05);
  }

  .blog-card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .blog-card-excerpt {
    font-size: 0.92rem;
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  /* ============ TESTIMONIALS PAGE ============ */
  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3rem 6rem;
  }

  .testimonial-featured {
    background: var(--cream-deep);
    padding: 5rem 4rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
  }

  .testimonial-featured::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 30px;
    font-family: 'Fraunces', serif;
    font-size: 18rem;
    color: var(--tan);
    opacity: 0.25;
    line-height: 1;
    font-style: italic;
  }

  .testimonial-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--brown-deep);
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
  }

  .testimonial-author {
    position: relative;
    z-index: 2;
  }

  .testimonial-name {
    font-size: 1rem;
    color: var(--terracotta-deep);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.4rem;
  }

  .testimonial-role {
    font-size: 0.85rem;
    color: var(--brown);
    font-style: italic;
  }

  .testimonial-stars {
    color: var(--sun);
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    font-size: 1.1rem;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .testimonial-card {
    padding: 2.5rem;
    background: var(--cream);
    border: 1px solid rgba(184, 107, 75, 0.15);
    transition: all 0.3s ease;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 25px;
    font-family: 'Fraunces', serif;
    font-size: 5rem;
    color: var(--tan);
    opacity: 0.5;
    line-height: 1;
    font-style: italic;
  }

  .testimonial-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(61, 37, 20, 0.08);
  }

  .testimonial-card .testimonial-stars {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .testimonial-card p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--brown-deep);
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .testimonial-card-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 107, 75, 0.15);
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 500;
  }

  .testimonial-card-name {
    font-size: 0.9rem;
    color: var(--brown-deep);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .testimonial-card-role {
    font-size: 0.8rem;
    color: var(--tan);
    font-style: italic;
    margin-top: 0.2rem;
  }

  /* ============ ABOUT / MEET THE PHOTOGRAPHER ============ */
  .about-hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 3rem 6rem;
    align-items: center;
  }

  .about-image-wrap {
    position: relative;
  }

  .about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--sand);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(61, 37, 20, 0.15);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tan) 0%, var(--terracotta) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-family: 'Fraunces', serif;
    text-align: center;
    padding: 2rem;
  }

  .about-image-placeholder-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    opacity: 0.9;
  }

  .about-image-placeholder-text {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
    max-width: 240px;
  }

  .about-image-placeholder-hint {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0.75;
  }

  .about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--cream);
    padding: 1.5rem 1.8rem;
    box-shadow: 0 12px 40px rgba(61, 37, 20, 0.12);
    z-index: 3;
    max-width: 220px;
  }

  .about-badge-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .about-badge-text {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--brown-deep);
  }

  .about-content .section-label {
    margin-bottom: 1.5rem;
  }

  .about-name {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1;
    color: var(--brown-deep);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }

  .about-name em {
    font-style: italic;
    color: var(--terracotta);
  }

  .about-title-role {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--tan);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
  }

  .about-bio {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--brown);
    margin-bottom: 1.5rem;
  }

  .about-bio:last-of-type {
    margin-bottom: 2.5rem;
  }

  .about-bio em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--brown-deep);
  }

  .about-signature {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--terracotta);
    font-weight: 300;
    margin: 2rem 0;
    letter-spacing: -0.01em;
  }

  .about-facts {
    padding: 5rem 3rem;
    background: var(--cream-deep);
  }

  .about-facts-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
  }

  .fact {
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(184, 107, 75, 0.2);
  }

  .fact-num {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }

  .fact-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 500;
  }

  .about-philosophy {
    padding: 6rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .philosophy-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--brown-deep);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
  }

  .philosophy-quote::before,
  .philosophy-quote::after {
    content: '—';
    color: var(--terracotta);
    display: inline-block;
    margin: 0 1rem;
    font-style: normal;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--cream-deep);
    color: var(--brown-deep);
    padding: 4rem 3rem 2rem;
    position: relative;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--terracotta);
    opacity: 0.7;
  }

  .footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(184, 107, 75, 0.2);
  }

  .footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    color: var(--brown-deep);
  }

  .footer-brand em {
    font-style: italic;
    color: var(--terracotta);
  }

  .footer-tagline {
    color: var(--brown);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
  }

  .footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col li {
    margin-bottom: 0.75rem;
  }

  .footer-col a,
  .footer-col button {
    color: var(--brown);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
  }

  .footer-col a:hover,
  .footer-col button:hover {
    color: var(--terracotta);
  }

  .footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--tan);
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 968px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: var(--cream);
      flex-direction: column;
      padding: 2rem;
      gap: 1.5rem;
      border-bottom: 1px solid rgba(184, 107, 75, 0.15);
      transform: translateY(-120%);
      transition: transform 0.3s ease;
    }
    .nav-links.open { transform: translateY(0); }
    .menu-toggle { display: block; }

    .hero {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 2rem 1.5rem 4rem;
    }
    .hero-visual { height: 450px; }

    .services, .inquiry { padding: 4rem 1.5rem; }
    .services-grid, .blog-grid, .gallery-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(n) { grid-row: auto; grid-column: auto; height: 300px; }
    .inquiry-wrap { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; gap: 2rem; }
    .blog-featured-img { height: 300px; }
    .blog-container, .testimonials-container { padding: 0 1.5rem 4rem; }
    .page-header { padding: 3rem 1.5rem 2rem; }
    .footer-wrap { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .testimonial-featured { padding: 3rem 2rem; }
    .about-hero { grid-template-columns: 1fr; gap: 4rem; padding: 2rem 1.5rem 5rem; }
    .about-badge { bottom: -20px; right: 20px; max-width: 180px; padding: 1rem 1.3rem; }
    .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .about-facts { padding: 4rem 1.5rem; }
    .about-philosophy { padding: 4rem 1.5rem; }
    .areas { padding: 4rem 1.5rem; }
    .areas-intro { grid-template-columns: 1fr; gap: 2rem; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .footer-wrap { grid-template-columns: 1fr; }
    .gallery-filters { padding: 1rem 1.5rem 2rem; }
  }

/* ============ WORDPRESS SINGLE POST ============ */
.single-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 3rem 6rem;
}
.single-post-header { text-align: center; margin-bottom: 3rem; }
.single-post-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brown-deep);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.single-post-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 3rem;
}
.single-post-content { font-size: 1.05rem; line-height: 1.85; color: var(--brown-deep); }
.single-post-content p { margin-bottom: 1.5rem; }
.single-post-content h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.8rem; margin: 2.5rem 0 1rem; color: var(--brown-deep); }
.single-post-content h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.4rem; margin: 2rem 0 1rem; color: var(--brown-deep); }
.single-post-content a { color: var(--terracotta-deep); text-decoration: underline; text-underline-offset: 3px; }
.single-post-content blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 2rem 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brown-deep);
}
.single-post-content img { max-width: 100%; height: auto; margin: 2rem 0; }

.post-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 107, 75, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.post-navigation a { color: var(--terracotta-deep); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

.comments-area { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(184, 107, 75, 0.2); }
.comments-title { font-family: 'Fraunces', serif; font-size: 1.6rem; margin-bottom: 2rem; color: var(--brown-deep); }
.comment-list { list-style: none; padding: 0; }
.comment-body { padding: 1.5rem; background: var(--cream-deep); margin-bottom: 1rem; }

.pagination { display: flex; justify-content: center; gap: 0.5rem; padding: 3rem 0; }
.pagination a, .pagination span {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(184, 107, 75, 0.3);
  color: var(--brown);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.pagination a:hover, .pagination .current {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
