:root {
  --background: #f4f2ed;
  --surface: #ffffff;
  --text: #171717;
  --muted: #67645f;
  --dark: #111210;
  --line: rgba(20, 20, 20, 0.12);
  --max-width: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.site-header {
  position: absolute;
  z-index: 20;
  width: 100%;
  color: white;
}

.header-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-main {
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-sub {
  margin-top: 7px;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #292b29;
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image:
    url("images/hero-equestrian.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.55) 0%,
      transparent 55%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 9vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.section-kicker {
  color: var(--muted);
}

.section-kicker.light {
  color: rgba(255,255,255,0.7);
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  font-weight: 400;
}

.hero h1 span {
  font-style: italic;
  font-weight: 400;
}

.hero-intro {
  margin: 38px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button-light {
  background: white;
  color: #111;
}

.button-light:hover {
  background: #e9e7e1;
}

.button-outline-light {
  border-color: rgba(255,255,255,0.65);
  color: white;
}

.button-outline-light:hover {
  background: white;
  color: #111;
}

.button-dark {
  background: var(--dark);
  color: white;
}

.button-dark:hover {
  background: #343632;
}

.intro-section {
  padding: 150px 0;
}

.intro-section h2,
.about-block h2,
.prints-section h2,
.cta-section h2,
.statement-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.intro-section h2 {
  max-width: 850px;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.95;
}

.intro-section p:last-child {
  max-width: 700px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.feature-grid-section {
  padding: 0 0 150px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--surface);
}

.feature-image {
  aspect-ratio: 4 / 5;
  position: relative;
  background: #cac8c1;
  overflow: hidden;
}

.feature-image::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.05),
      rgba(0,0,0,0.3)
    );
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.equestrian-image {
  background: linear-gradient(135deg, #81796e, #35332f);
}

.equestrian-image::after {
  content: "EQUESTRIAN IMAGE";
}

.dog-image {
  background: linear-gradient(135deg, #897c69, #484039);
}

.dog-image::after {
  content: "DOG IMAGE";
}

.event-image {
  background: linear-gradient(135deg, #6f746d, #2b302c);
}

.event-image::after {
  content: "LATEST EVENT IMAGE";
}

.feature-card-content {
  padding: 35px;
}

.feature-card h3,
.featured-caption h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.feature-card p:not(.section-kicker) {
  margin: 22px 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-statement {
  min-height: 850px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: #272a27;
  color: white;
  overflow: hidden;
}

.brand-statement-image,
.brand-statement-overlay {
  position: absolute;
  inset: 0;
}

.brand-statement-image {
  background: linear-gradient(120deg, #4f534d, #151815);
}

.brand-statement-image::after {
  content: "";
}

.brand-statement-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.05)
    ),
    linear-gradient(
      0deg,
      rgba(0,0,0,0.65),
      transparent 70%
    );
}

.statement-content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}

.statement-content h2 {
  max-width: 900px;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
}

.statement-content > p:last-child {
  max-width: 610px;
  margin-top: 35px;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.split-section {
  padding: 150px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.about-block h2 {
  font-size: clamp(3.8rem, 6vw, 6rem);
  line-height: 0.95;
}

.about-block > p:not(.section-kicker) {
  max-width: 570px;
  margin: 28px 0;
  color: var(--muted);
}

.about-block .button {
  margin-top: 15px;
}

.featured-image {
  min-height: 700px;
  position: relative;
  background: linear-gradient(135deg, #87827a, #343833);
}

.featured-image::after {
  content: "FEATURED / RECENT WORK IMAGE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.featured-caption {
  padding-top: 28px;
}

.prints-section {
  padding: 140px 0;
  text-align: center;
  background: #e8e4dc;
}

.prints-section h2 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.prints-section p:not(.section-kicker) {
  max-width: 640px;
  margin: 30px auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.cta-section {
  padding: 120px 0;
  background: var(--dark);
  color: white;
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.cta-section h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9;
}

.cta-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.site-footer {
  padding: 80px 0 30px;
  background: #080908;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.footer-location {
  color: rgba(255,255,255,0.55);
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-social a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}

@media (max-width: 1000px) {

  .main-nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 24px;
    right: 24px;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    background: #111;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .featured-image {
    min-height: 550px;
  }

  .cta-inner {
    display: block;
  }

  .cta-actions {
    justify-content: flex-start;
    margin-top: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {

  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: 85px;
  }

  .brand-main {
    font-size: 1rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .eyebrow {
    max-width: 280px;
    line-height: 1.7;
  }

  .intro-section,
  .split-section {
    padding: 95px 0;
  }

  .feature-grid-section {
    padding-bottom: 95px;
  }

  .feature-card {
    display: block;
  }

  .feature-card-content {
    padding: 28px;
  }

  .brand-statement {
    min-height: 700px;
  }

  .statement-content {
    padding-bottom: 65px;
  }

  .brand-statement-image::after {
    white-space: normal;
    text-align: center;
  }

  .featured-image {
    min-height: 480px;
  }

  .prints-section {
    padding: 95px 0;
  }

  .cta-section {
    padding: 90px 0;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    margin-top: 50px;
  }
}

/* Hero composition adjustment */
.hero-image {
  transform: scaleX(-1);
}

/* Dog photography card image */
.dog-image {
  background-image: url("images/dogs-brothers.jpg");
  background-size: cover;
  background-position: center 58%;
  background-repeat: no-repeat;
}

.dog-image::after {
  content: "";
}

/* Equestrian photography card */
.equestrian-image {
  background-image: url("images/equestrian-card.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.equestrian-image::after {
  content: "";
}

/* Recent Events homepage image */
.event-image {
  background-image: url("images/recent-event.jpg");
  background-size: cover;
  background-position: center;
}

.event-image::after {
  content: "";
}

/* Fine tune homepage dog photograph */
.dog-image {
  background-position: center 68%;
}

/* Homepage Equestrian photograph */
.equestrian-image {
  background-image: url("images/equestrian-home.jpg");
  background-size: cover;
  background-position: center center;
}

.equestrian-image::after {
  content: "";
}

/* Fine tune Equestrian homepage crop */
.equestrian-image {
  background-position: center 42%;
}

/* Final Equestrian homepage crop */
.equestrian-image {
  background-position: center 35%;
}

/* Equestrian crop — extra headroom */
.equestrian-image {
  background-position: center 30%;
}

/* Tighten brand statement section */
.brand-statement {
  min-height: 650px;
}

.statement-content {
  padding-bottom: 70px;
}

/* Give statement slightly more width */
.statement-content h2 {
  max-width: 1000px;
}

/* Brand statement horizontal alignment */
.brand-statement .statement-content {
  width: calc(100% - 220px);
  max-width: none;
  margin-left: 110px;
  margin-right: 110px;
}

/* About Barry — photographer at work */
.featured-image {
  background-image: url("images/about-barry.jpg");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.featured-image::after {
  content: none;
}

/* About Barry photograph */
.featured-image {
  background-image: url("images/about-barry.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.featured-image::after {
  content: none !important;
}

/* Fine tune About Barry photograph */
.featured-image {
  background-position: center 35%;
}

/* Recent Photography */
.recent-photography-section {
  padding: 120px 0 140px;
  background: var(--background);
}

.recent-photography-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 55px;
}

.recent-photography-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.recent-photography-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  align-items: end;
}

.recent-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #686963, #262925);
}

.recent-photo-one {
  aspect-ratio: 4 / 5;
}

.recent-photo-two {
  aspect-ratio: 4 / 6;
}

.recent-photo-three {
  aspect-ratio: 4 / 5;
}

.recent-photo span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .recent-photography-heading {
    display: block;
  }

  .recent-photography-heading .text-link {
    margin-top: 24px;
  }

  .recent-photography-grid {
    grid-template-columns: 1fr;
  }

  .recent-photo-one,
  .recent-photo-two,
  .recent-photo-three {
    aspect-ratio: 4 / 5;
  }
}

/* Recent Photography — real images */
.recent-photo {
  background-size: cover;
  background-repeat: no-repeat;
}

.recent-photo-one {
  background-image: url("images/recent-horse.jpg");
  background-position: center center;
}

.recent-photo-two {
  background-image: url("images/recent-dog.jpg");
  background-position: center center;
}

.recent-photo-three {
  background-image: url("images/recent-event.jpg");
  background-position: center center;
}

.recent-photo span {
  display: none;
}

/* Recent Work page */
.site-header-dark {
  position: relative;
  background: #111311;
}

.recent-work-hero {
  padding: 120px 0 100px;
  background: #f3f1eb;
}

.recent-work-hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.recent-work-intro {
  max-width: 700px;
  margin-top: 35px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.recent-work-gallery-section {
  padding: 120px 0 140px;
}

.recent-work-gallery-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.recent-work-gallery-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
}

.recent-work-gallery-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #5e615b, #20231f);
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .recent-work-gallery-heading {
    grid-template-columns: 1fr;
  }
}

/* Gilsland Country Show feature image */
.recent-work-gallery-placeholder {
  background:
    url("images/recent-event.jpg")
    center 48% / cover no-repeat;
  min-height: 650px;
}

.recent-work-gallery-placeholder p {
  display: none;
}

/* Gilsland editorial photo story */
.gilsland-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.gilsland-story-grid figure {
  margin: 0;
  overflow: hidden;
}

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

.gilsland-story-horse {
  height: 720px;
}

.gilsland-story-dog {
  height: 540px;
  margin-top: 90px !important;
}

@media (max-width: 900px) {
  .gilsland-story-grid {
    grid-template-columns: 1fr;
  }

  .gilsland-story-horse,
  .gilsland-story-dog {
    height: auto;
    margin-top: 0 !important;
  }

  .gilsland-story-grid img {
    height: auto;
  }
}

/* Gilsland horse story — Brick 3 */
.gilsland-horse-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 90px;
  align-items: start;
}

.gilsland-horse-story figure {
  margin: 0;
  overflow: hidden;
}

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

.gilsland-horse-story-rider {
  height: 760px;
}

.gilsland-horse-story-handler {
  height: 620px;
  margin-top: 110px !important;
}

.gilsland-horse-story-winner {
  grid-column: 1 / -1;
  width: 58%;
  height: 700px;
  margin: 55px auto 0 !important;
}

@media (max-width: 900px) {
  .gilsland-horse-story {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .gilsland-horse-story-rider,
  .gilsland-horse-story-handler,
  .gilsland-horse-story-winner {
    width: 100%;
    height: auto;
    margin-top: 0 !important;
    grid-column: auto;
  }

  .gilsland-horse-story img {
    height: auto;
  }
}

/* Preserve full portrait framing for Gilsland horse story */
.gilsland-horse-story-handler {
  height: auto;
}

.gilsland-horse-story-handler img {
  height: auto;
  object-fit: contain;
}

/* Z52_1002 homepage hero crop */
.hero-image {
  background-position: center 28%;
}

/* Equestrian portfolio gallery */
.equestrian-gallery-section {
  padding: 110px 0 130px;
  background: #f4f2ec;
}

.equestrian-gallery-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.equestrian-gallery-heading h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: 0.9;
  font-weight: 500;
}

.equestrian-gallery-heading > p {
  max-width: 460px;
  margin: 0 0 10px auto;
  line-height: 1.7;
}

.equestrian-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.equestrian-gallery-item {
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

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

/* Top row */
.equestrian-gallery-item:nth-child(1) {
  grid-column: 1 / span 5;
  height: 620px;
}

.equestrian-gallery-item:nth-child(2) {
  grid-column: 6 / span 7;
  height: 620px;
}

/* Middle row */
.equestrian-gallery-item:nth-child(3) {
  grid-column: 1 / span 4;
  height: 520px;
}

.equestrian-gallery-item:nth-child(4) {
  grid-column: 5 / span 4;
  height: 620px;
}

.equestrian-gallery-item:nth-child(5) {
  grid-column: 9 / span 4;
  height: 520px;
}

/* Final feature image */
.equestrian-gallery-item:nth-child(6) {
  grid-column: 2 / span 10;
  height: 620px;
  margin-top: 10px;
}
@media (max-width: 800px) {
  .equestrian-gallery-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .equestrian-gallery-heading > p {
    margin-left: 0;
  }

  .equestrian-gallery-grid {
    grid-template-columns: 1fr;
  }

  .equestrian-gallery-item:nth-child(n) {
    grid-column: auto;
    height: auto;
  }

  .equestrian-gallery-item img {
    height: auto;
  }
}

/* Equestrian introduction */
.equestrian-intro-section {
  padding: 110px 0;
  background: #f4f2ec;
}

.equestrian-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.equestrian-intro-image {
  overflow: hidden;
}

.equestrian-intro-image img {
  display: block;
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
}

.equestrian-intro-copy {
  max-width: 560px;
}

.equestrian-intro-copy h2 {
  margin: 18px 0 34px;
  font-size: clamp(3.8rem, 6vw, 7rem);
  line-height: 0.88;
  font-weight: 500;
}

.equestrian-intro-copy > p:last-child {
  max-width: 520px;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .equestrian-intro-section {
    padding: 75px 0;
  }

  .equestrian-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .equestrian-intro-image img {
    height: auto;
  }

  .equestrian-intro-copy {
    max-width: none;
  }
}

/* Tighten equestrian intro-to-gallery transition */
.equestrian-intro-section {
  padding-bottom: 70px;
}

.equestrian-gallery-section {
  padding-top: 70px;
}

/* Keep rider's head visible in final equestrian gallery image */
.equestrian-gallery-item:nth-child(6) img {
  object-position: center top;
}

/* Equestrian booking CTA */
.equestrian-booking-cta {
  margin-top: 0;
}

.equestrian-booking-cta h2 {
  margin-bottom: 28px;
}

.equestrian-booking-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* Equestrian footer link spacing */
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer > .container > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer a {
  text-decoration: none;
}

/* ==================================================
   PRINTS PAGE
   ================================================== */

.prints-page-hero {
  padding: 130px 0 120px;
  background: #e8e4dc;
}

.prints-page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.prints-page-hero h1 span {
  font-style: italic;
}

.prints-page-hero > .container > p:last-child {
  max-width: 680px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
}


.prints-selection-section {
  padding: 120px 0 140px;
  background: var(--background);
}

.prints-selection-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.prints-selection-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.prints-selection-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

.prints-image-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  align-items: end;
}

.prints-image-grid figure {
  margin: 0;
  overflow: hidden;
}

.prints-image-grid figure:nth-child(1) {
  height: 620px;
}

.prints-image-grid figure:nth-child(2) {
  height: 520px;
}

.prints-image-grid figure:nth-child(3) {
  height: 580px;
}

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


.prints-process-section {
  padding: 130px 0;
  background: #ffffff;
}

.prints-process-section > .container > h2 {
  max-width: 850px;
  margin: 0 0 70px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.prints-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.prints-process-grid > div {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.prints-process-grid span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.prints-process-grid h3 {
  margin: 24px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.prints-process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.prints-cta-copy {
  max-width: 610px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}


@media (max-width: 900px) {

  .prints-selection-heading,
  .prints-process-grid {
    grid-template-columns: 1fr;
  }

  .prints-image-grid {
    grid-template-columns: 1fr;
  }

  .prints-image-grid figure:nth-child(n) {
    height: auto;
  }

  .prints-image-grid img {
    height: auto;
  }
}

/* ==================================================
   CONTACT PAGE
   ================================================== */

.contact-page-hero {
  padding: 140px 0 130px;
  background: #f4f2ec;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}

.contact-page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 8vw, 8.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.contact-page-intro {
  padding-bottom: 8px;
}

.contact-page-intro p {
  max-width: 520px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}


.contact-options-section {
  padding: 120px 0 140px;
  background: #ffffff;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.contact-options-grid article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-options-grid span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-options-grid h2 {
  margin: 26px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.05;
}

.contact-options-grid p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}


.contact-direct-section {
  padding: 120px 0;
  background: var(--dark);
  color: white;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}

.contact-direct-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.contact-direct-details p {
  max-width: 540px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.contact-email {
  display: inline-block;
  margin: 24px 0;
  color: white;
  font-size: clamp(1.25rem, 2vw, 2rem);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

.contact-location {
  margin-bottom: 0;
}


@media (max-width: 900px) {

  .contact-page-grid,
  .contact-direct-grid,
  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid,
  .contact-direct-grid {
    gap: 45px;
  }
}

/* Dogs page hero */
.dogs-hero .hero-image {
  background-image: url("images/dog-final-02.jpg");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  transform: none;
}

.dogs-hero .hero-image::after {
  content: "";
}

/* Dogs hero — pull portrait back for more breathing room */
.dogs-hero {
  background: #101210;
}

.dogs-hero .hero-image {
  background-size: 85% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #101210;
}

/* Fix Dogs hero side bars */
.dogs-hero .hero-image {
  background-size: cover;
  background-position: center 42%;
}

/* Dogs hero — wider landscape source */
.dogs-hero .hero-image {
  background-image: url("images/dog-final-06.jpg");
  background-size: cover;
  background-position: center center;
}

/* Dogs hero — test dog-final-05 */
.dogs-hero .hero-image {
  background-image: url("images/dog-final-05.jpg");
  background-size: cover;
  background-position: center center;
}

/* Dogs hero — final candidate dog-final-06 */
.dogs-hero .hero-image {
  background-image: url("images/dog-final-06.jpg");
  background-size: cover;
  background-position: center center;
}

/* Dogs hero — test source photograph 356 */
.dogs-hero .hero-image {
  background-image: url("images/dog-hero-356.jpg");
  background-size: cover;
  background-position: center center;
}

/* ==================================================
   PRINT PRICE MENU
   ================================================== */

.print-pricing-section {
  padding: 90px 0;
  background: #f5f3ee;
}

.print-pricing-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.print-pricing-heading h2 {
  margin: 10px 0 18px;
}

.print-pricing-heading p {
  line-height: 1.7;
}

.print-price-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.print-price-card {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.08);
}

.print-price-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.print-price-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.print-delivery-note {
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
}

.print-order-action {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 700px) {
  .print-pricing-section {
    padding: 60px 0;
  }

  .print-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ==================================================
   PRINT ORDER PAGE
   ================================================== */

.print-order-hero {
  padding: 170px 0 90px;
  background: #111310;
  color: #fff;
}

.print-order-hero-inner {
  max-width: 820px;
}

.print-order-hero h1 {
  margin: 14px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .88;
  font-weight: 400;
}

.print-order-hero h1 span {
  font-style: italic;
}

.print-order-hero p:last-child {
  max-width: 650px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}


.print-order-section {
  padding: 90px 0;
  background: #f5f3ee;
}

.print-order-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.print-order-intro h2 {
  margin: 10px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 400;
}

.print-order-intro > p {
  line-height: 1.7;
}


.print-order-prices {
  margin-top: 35px;
  border-top: 1px solid rgba(0,0,0,.15);
}

.print-order-prices p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,.15);
}

.print-order-prices span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}


.print-order-delivery {
  margin-top: 25px;
  font-size: 14px;
}


.print-order-form-wrap {
  padding: 42px;
  background: #fff;
}

.print-order-form {
  display: grid;
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.form-field input,
.form-field textarea,
.form-field select {
  box-sizing: border-box;
  width: 100%;
  padding: 14px;
  border: 1px solid #c9c7c1;
  border-radius: 0;
  background: #fff;
  color: #111;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid #111;
  outline-offset: 1px;
}


.print-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
}

.print-consent input {
  margin-top: 3px;
}


.print-submit {
  border: 0;
  cursor: pointer;
}

.print-form-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}


@media (max-width: 800px) {

  .print-order-hero {
    padding: 130px 0 70px;
  }

  .print-order-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .print-order-form-wrap {
    padding: 28px 20px;
  }

}

/* ==================================================
   PRINT GALLERY
   ================================================== */

.print-gallery-section {
  padding: 100px 0;
  background: #f5f3ee;
}

.print-gallery-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.print-gallery-heading h2 {
  margin: 10px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .95;
  font-weight: 400;
}

.print-gallery-heading p:last-child {
  max-width: 620px;
  line-height: 1.7;
}

.print-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.print-gallery-card {
  background: #fff;
}

.print-gallery-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #c9c6bd, #8a8983);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  letter-spacing: .12em;
}

.print-gallery-card-copy {
  padding: 24px;
  display: grid;
  gap: 8px;
}

.print-gallery-card-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.print-gallery-card-copy span {
  font-size: 13px;
  color: #666;
}

@media (max-width: 700px) {
  .print-gallery-section {
    padding: 70px 0;
  }

  .print-gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* Real images in print gallery */
.print-gallery-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d2d0c9;
}

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

.print-gallery-image > span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* Smaller decorative punctuation on large headings */
.small-stop {
  display: inline-block;
  font-size: 0.55em;
  line-height: 1;
  opacity: 0.72;
  vertical-align: baseline;
  margin-left: 0.03em;
}


/* Dog page feature heading refinement */
.dogs-page .feature-copy h2,
.dogs-intro h2,
.dogs-feature h2 {
  font-size: clamp(3.6rem, 6vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 8.5ch;
}


/* Dog intro heading — keep each phrase on one line */
body:has(.dogs-hero) .equestrian-intro-copy {
  max-width: 680px;
}

body:has(.dogs-hero) .equestrian-intro-copy h2 {
  font-size: clamp(3.2rem, 4.9vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

@media (max-width: 800px) {
  body:has(.dogs-hero) .equestrian-intro-copy h2 {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
    white-space: normal;
  }
}


/* Equestrian intro — match Dogs typography */
body:has(.equestrian-hero) .equestrian-intro-copy {
  max-width: 680px;
}

body:has(.equestrian-hero) .equestrian-intro-copy h2 {
  font-size: clamp(3.2rem, 4.9vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  white-space: nowrap;
}



/* Final Equestrian gallery heading layout */
body:has(.equestrian-hero) .equestrian-gallery-heading {
  display: block;
  margin-bottom: 70px;
}

body:has(.equestrian-hero) .equestrian-gallery-heading > div {
  max-width: 900px;
}

body:has(.equestrian-hero) .equestrian-gallery-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 4.1vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 500;
}

body:has(.equestrian-hero) .equestrian-gallery-heading > p {
  max-width: 620px;
  margin: 28px 0 0;
  line-height: 1.7;
}

.heading-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 800px) {
  body:has(.equestrian-hero) .equestrian-gallery-heading h2 {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .heading-line {
    white-space: normal;
  }
}

/* Gallery introduction copy beneath heading */
.equestrian-gallery-heading .gallery-intro-copy {
  max-width: 620px;
  margin: 28px 0 0;
  line-height: 1.7;
}


/* Final Equestrian gallery intro layout */
body:has(.equestrian-hero) .equestrian-gallery-heading {
  display: block;
  margin-bottom: 70px;
}

body:has(.equestrian-hero) .equestrian-gallery-heading > div {
  max-width: 900px;
}

body:has(.equestrian-hero) .equestrian-gallery-heading .gallery-intro-copy {
  max-width: 620px;
  margin: 28px 0 0;
  line-height: 1.7;
}


/* Temporary print-launch state */
.print-coming-soon {
  cursor: default;
  opacity: 0.7;
}


/* Mobile brand statement refinement */
@media (max-width: 700px) {

  .brand-statement .statement-content {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .statement-content h2 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
  }

  .statement-content > p:last-child {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

}


@media (max-width: 700px) {
  .brand-statement .statement-content {
    width: auto;
    margin-left: 28px;
    margin-right: 28px;
  }
}


/* Final mobile statement heading fit */
@media (max-width: 700px) {
  .statement-content h2 {
    font-size: clamp(2.9rem, 12.5vw, 4.2rem);
    line-height: 0.94;
  }
}


/* ==================================================
   ABOUT PAGE
   ================================================== */

.about-page-hero {
  padding: 130px 0;
  background: #f4f2ec;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.about-page-copy {
  max-width: 620px;
}

.about-page-copy h1 {
  margin: 10px 0 35px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.about-page-copy p {
  line-height: 1.75;
  color: var(--muted);
}

.about-page-lead {
  font-size: 1.25rem;
  color: #222 !important;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button-outline-dark {
  border-color: #111;
  color: #111;
}

.button-outline-dark:hover {
  background: #111;
  color: #fff;
}

.about-page-image img {
  display: block;
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: center 40%;
}

@media (max-width: 900px) {
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-page-image img {
    height: auto;
  }
}

@media (max-width: 700px) {
  .about-page-hero {
    padding: 85px 0;
  }

  .about-page-copy h1 {
    font-size: clamp(3.8rem, 16vw, 5.5rem);
  }

  .about-page-actions {
    flex-direction: column;
  }

  .about-page-actions .button {
    width: 100%;
  }
}


/* Mobile Recent Photography spacing refinement */
@media (max-width: 700px) {
  .recent-photography-section {
    padding: 90px 0 70px;
  }
}


/* Real-phone safeguard for brand statement */
@media (max-width: 480px) {

  .brand-statement .statement-content {
    width: auto;
    max-width: none;
    margin-left: 22px;
    margin-right: 22px;
  }

  .statement-content h2 {
    font-size: clamp(2.55rem, 11.5vw, 3.6rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .statement-content > p:last-child {
    max-width: 100%;
    margin-top: 28px;
    font-size: 1rem;
    line-height: 1.55;
    text-align: left;
  }

}


/* Real-phone safeguard for Contact page */
@media (max-width: 480px) {

  .contact-page-hero {
    padding: 90px 0 75px;
  }

  .contact-page-grid {
    gap: 32px;
  }

  .contact-page-hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .contact-page-intro {
    padding-bottom: 0;
  }

  .contact-page-intro p {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-options-section {
    padding: 80px 0 95px;
  }

  .contact-options-grid {
    gap: 36px;
    margin-top: 36px;
  }

  .contact-options-grid h2 {
    font-size: 2rem;
  }

  .contact-direct-section {
    padding: 85px 0;
  }

  .contact-direct-section h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
    line-height: 0.94;
  }

  .contact-email {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

}


/* Real-phone safeguard for Equestrian hero */
@media (max-width: 480px) {

  .equestrian-hero .hero-content {
    padding-bottom: 60px;
  }

  .equestrian-hero .eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.55;
    letter-spacing: 0.16em;
  }

  .equestrian-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    max-width: 100%;
  }

  .equestrian-hero .hero-intro {
    margin-top: 30px;
    font-size: 1.08rem;
    line-height: 1.55;
  }

}


/* Real-phone safeguard for Equestrian hero */
@media (max-width: 480px) {

  .equestrian-hero .hero-content {
    padding-bottom: 60px;
  }

  .equestrian-hero .eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.55;
    letter-spacing: 0.16em;
  }

  .equestrian-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    max-width: 100%;
  }

  .equestrian-hero .hero-intro {
    margin-top: 30px;
    font-size: 1.08rem;
    line-height: 1.55;
  }

}


/* Real-phone safeguard for Equestrian page hero */
@media (max-width: 480px) {

  .equestrian-page .hero-content {
    padding-bottom: 60px;
  }

  .equestrian-page .hero .section-kicker {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.55;
    letter-spacing: 0.16em;
  }

  .equestrian-page .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
    max-width: 100%;
  }

  .equestrian-page .hero h1 span {
    display: block;
  }

  .equestrian-page .hero-intro {
    margin-top: 30px;
    font-size: 1.08rem;
    line-height: 1.55;
  }

}


/* Real-phone safeguard for Dog page hero */
@media (max-width: 480px) {

  .dogs-page .hero-content {
    padding-bottom: 60px;
  }

  .dogs-page .hero .section-kicker {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.55;
    letter-spacing: 0.16em;
  }

  .dogs-page .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
    max-width: 100%;
  }

  .dogs-page .hero h1 span {
    display: block;
  }

  .dogs-page .hero-intro {
    margin-top: 30px;
    font-size: 1.08rem;
    line-height: 1.55;
  }

}


/* Real-phone Dog hero crop — bring the face further into frame */
@media (max-width: 480px) {
  .dogs-page .hero-image {
    background-position: 68% center;
  }
}


/* Mobile Dog hero — show more of the dog's head */
@media (max-width: 480px) {
  .dogs-page .hero-image {
    background-position: 68% center;
  }
}


/* ==================================================
   FINAL MOBILE PRINTS PAGE REFINEMENT
   ================================================== */

@media (max-width: 700px) {

  /* Prevent anything on Prints page escaping screen */
  body:has(.prints-page-hero) {
    overflow-x: hidden;
  }

  /* Main Prints hero */
  .prints-page-hero {
    padding: 105px 0 90px;
  }

  .prints-page-hero h1 {
    font-size: clamp(3.6rem, 15vw, 5rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .prints-page-hero h1 span {
    display: block;
  }

  .prints-page-hero p {
    max-width: 100%;
  }

  /* General large headings on Prints page */
  body:has(.prints-page-hero) h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  /* Print collection heading */
  .prints-collection-section h2 {
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 0.94;
    letter-spacing: -0.035em;
  }

  /* Ordering section */
  .print-order-section h2,
  .prints-order-section h2 {
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 0.94;
    letter-spacing: -0.035em;
    max-width: 100%;
  }

  /* Individual ordering headings */
  .print-order-section h3,
  .prints-order-section h3 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    line-height: 1;
  }

  /* Keep photographs inside screen */
  .prints-page-hero img,
  .prints-image-grid img,
  .prints-gallery img,
  .print-collection img {
    max-width: 100%;
    height: auto;
  }
}


/* ==================================================
   CONTACT ENQUIRY FORM
   ================================================== */

.contact-form-section {
  padding: 130px 0;
  background: #f4f2ec;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.contact-form-copy {
  position: sticky;
  top: 40px;
}

.contact-form-copy h1,
.contact-form-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.contact-form-copy > p:not(.section-kicker) {
  max-width: 470px;
  margin-top: 32px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form-email-fallback a {
  color: #111;
  overflow-wrap: anywhere;
}

.contact-form-wrap {
  padding: 48px;
  background: #fff;
}

.contact-enquiry-form {
  display: grid;
  gap: 24px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form-copy {
    position: static;
  }
}

@media (max-width: 600px) {
  .contact-form-section {
    padding: 85px 0;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 30px 20px;
  }

  .contact-form-copy h1,
.contact-form-copy h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .contact-submit {
    width: 100%;
  }
}


/* Contact page refinement after enquiry form */

.contact-page-hero {
  padding: 105px 0 90px;
}

.contact-page-hero h1 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.contact-honeypot {
  position: fixed !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-honeypot label,
.contact-honeypot input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
}

@media (max-width: 480px) {
  .contact-page-hero {
    padding: 75px 0 65px;
  }
}


/* Definitively hide contact spam honeypot */
.contact-enquiry-form .contact-honeypot {
  display: none !important;
}


/* Final contact form layout refinement */

.contact-form-section {
  padding: 120px 0;
}

.contact-form-layout {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
}

.contact-form-copy {
  max-width: 430px;
}

.contact-form-wrap {
  max-width: 760px;
  margin-left: auto;
  padding: 42px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.contact-enquiry-form {
  gap: 20px;
}

.contact-form-row {
  gap: 18px;
}

@media (max-width: 900px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    max-width: none;
    margin-left: 0;
  }
}


/* Contact form desktop/tablet breakpoint correction */
@media (min-width: 761px) {

  .contact-form-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: 70px;
    align-items: start;
  }

  .contact-form-copy {
    max-width: 430px;
    position: sticky;
    top: 40px;
  }

  .contact-form-wrap {
    max-width: 760px;
    margin-left: auto;
  }

}

@media (max-width: 760px) {

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-form-copy {
    position: static;
  }

}


/* ==================================================
   CONTACT FORM RESPONSE PAGES
   ================================================== */

.contact-response-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 130px 0;
  background: #f4f2ec;
}

.contact-response-inner {
  max-width: 900px;
}

.contact-response-inner h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.contact-response-lead {
  max-width: 650px;
  margin: 38px 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.contact-response-lead a {
  color: #111;
}

@media (max-width: 700px) {

  .contact-response-section {
    min-height: 60vh;
    padding: 90px 0;
  }

  .contact-response-inner h1 {
    font-size: clamp(3.8rem, 16vw, 6rem);
  }

}




/* ==================================================
   WIDE / ULTRAWIDE HERO COMPOSITION
   Home + Equestrian + Dogs
   ================================================== */

@media (min-width: 1500px) and (min-aspect-ratio: 16/9) {

  /* Homepage hero */
  body:not(.equestrian-page):not(.dogs-page) .hero-image {
    background-position: center 18%;
  }

  /* Equestrian page — retain more rider headroom */
  body.equestrian-page .hero-image {
    background-position: center 15%;
  }

  /* Dogs page — keep the dog's face comfortably framed */
  body.dogs-page .hero-image {
    background-position: center 38%;
  }

}


/* Extra-wide monitors */
@media (min-width: 2100px) and (min-aspect-ratio: 2/1) {

  body:not(.equestrian-page):not(.dogs-page) .hero-image {
    background-position: center 12%;
  }

  body.equestrian-page .hero-image {
    background-position: center 10%;
  }

  body.dogs-page .hero-image {
    background-position: center 35%;
  }

}



/* ==================================================
   PRIVATE CLIENT GALLERIES
   ================================================== */

.client-login-section {
  min-height: calc(100vh - 100px);
  padding: 130px 0;
  display: flex;
  align-items: center;
  background: #f4f2ec;
}

.client-login-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.client-login-copy {
  max-width: 700px;
}

.client-login-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.client-login-copy > p:last-child {
  max-width: 570px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.client-login-card {
  padding: 48px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.client-login-card form {
  display: grid;
  gap: 24px;
}

.client-login-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.client-login-error {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid #111;
  background: #f4f2ec;
  font-size: 0.9rem;
  line-height: 1.5;
}


/* Individual private gallery */

.client-gallery-logout {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.client-gallery-hero {
  padding: 120px 0 90px;
  background: #f4f2ec;
}

.client-gallery-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.client-gallery-hero > .container > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.client-gallery-section {
  padding: 90px 0 130px;
  background: #fff;
}

.client-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.client-gallery-item {
  margin: 0;
}

.client-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  background: #eceae5;
}

.client-gallery-item figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-gallery-empty {
  max-width: 760px;
  padding: 70px 0;
}

.client-gallery-empty h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.client-gallery-empty > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.7;
}


/* Client gallery tablet */

@media (max-width: 900px) {

  .client-login-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .client-login-card {
    max-width: 650px;
  }

  .client-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* Client gallery phone */

@media (max-width: 600px) {

  .client-login-section {
    min-height: auto;
    padding: 85px 0 95px;
  }

  .client-login-layout {
    gap: 45px;
  }

  .client-login-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
    line-height: 0.9;
  }

  .client-login-copy > p:last-child {
    margin-top: 28px;
    font-size: 1rem;
  }

  .client-login-card {
    padding: 30px 20px;
  }

  .client-gallery-hero {
    padding: 85px 0 70px;
  }

  .client-gallery-hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .client-gallery-section {
    padding: 60px 0 90px;
  }

  .client-gallery-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

}


/* ==================================================
   CLIENT GALLERY PROOF GRID REFINEMENT
   ================================================== */

.client-gallery-item {
  margin: 0;
}

.client-gallery-item > a:not(.client-gallery-buy-download) {
  display: block;
  overflow: hidden;
  background: #eceae5;
  text-decoration: none;
}

.client-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform 180ms ease;
}

.client-gallery-item > a:not(.client-gallery-buy-download):hover img {
  transform: scale(1.015);
}

.client-gallery-item figcaption {
  padding-top: 10px;
}


/* Slightly tighter grid on large screens */

@media (min-width: 1200px) {

  .client-gallery-grid {
    gap: 18px;
  }

}


/* Keep portrait/landscape proofs consistent */

@media (max-width: 600px) {

  .client-gallery-item img {
    aspect-ratio: 4 / 3;
  }

}

/* Final client proof gallery lock */

.client-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: start;
}

.client-gallery-item {
  min-width: 0;
  margin: 0;
}

.client-gallery-item > a:not(.client-gallery-buy-download) {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.client-gallery-item img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

@media (max-width: 900px) {
  .client-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .client-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}



/* ==================================================
   CLIENT GALLERY PRESENTATION POLISH
   ================================================== */

.client-gallery-hero {
  padding-bottom: 70px;
}

.client-gallery-instruction {
  margin-top: 14px !important;
  font-size: 0.92rem !important;
  color: var(--muted);
}

.client-gallery-section {
  padding-top: 50px;
}

.client-gallery-grid {
  gap: 28px 22px !important;
}

.client-gallery-item figcaption {
  margin-top: 8px;
  padding-top: 0;
  color: #777;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

@media (min-width: 1400px) {
  .client-gallery-grid {
    gap: 34px 26px !important;
  }
}


/* Final private gallery mobile heading refinement */
@media (max-width: 600px) {

  .client-gallery-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    line-height: 0.92;
  }

  .client-gallery-hero {
    padding-top: 70px;
    padding-bottom: 55px;
  }

}


/* ==================================================
   CLIENT GALLERY ADMIN
   ================================================== */

.client-admin-section {
  min-height: 75vh;
  padding: 120px 0;
  background: #f4f2ec;
}

.client-admin-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}

.client-admin-heading h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.client-admin-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

.client-admin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.client-admin-card {
  padding: 42px;
  background: #fff;
}

.client-admin-card h2 {
  margin: 0 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 400;
}

.client-admin-card form {
  display: grid;
  gap: 20px;
}

.client-admin-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.client-admin-gallery-list {
  display: grid;
  gap: 0;
}

.client-admin-gallery-list > .client-admin-gallery-item {
  display: grid;
  justify-content: stretch;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.client-admin-gallery-list strong,
.client-admin-gallery-list span {
  display: block;
}

.client-admin-gallery-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.client-admin-gallery-list a {
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.client-admin-success,
.client-admin-error {
  margin: 0 0 30px;
  padding: 16px 18px;
  background: #fff;
  border-left: 3px solid #111;
}

@media (max-width: 850px) {

  .client-admin-heading,
  .client-admin-layout {
    grid-template-columns: 1fr;
  }

  .client-admin-heading {
    gap: 28px;
  }

}

@media (max-width: 600px) {

  .client-admin-section {
    padding: 85px 0;
  }

  .client-admin-card {
    padding: 28px 20px;
  }

  .client-admin-heading h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

}


/* ==================================================
   CLIENT ADMIN PHOTO UPLOAD
   ================================================== */

.client-admin-gallery-item {
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start !important;
  padding: 24px 0 !important;
}

.client-admin-gallery-meta {
  min-width: 0;
}

.client-admin-gallery-actions {
  text-align: right;
}

.client-admin-upload-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding-top: 14px;
}

.client-admin-upload-form label {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 700;
}

.client-admin-upload-form input[type="file"] {
  width: 100%;
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  background: #fff;
}

.client-admin-upload-submit {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 700px) {

  .client-admin-gallery-item {
    grid-template-columns: 1fr !important;
  }

  .client-admin-gallery-actions {
    text-align: left;
  }

  .client-admin-upload-form {
    grid-template-columns: 1fr;
  }

  .client-admin-upload-submit {
    width: 100%;
  }

}


/* ==================================================
   CLIENT ADMIN PHOTO MANAGEMENT
   ================================================== */

.client-admin-photo-manager {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.client-admin-photo-count {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-admin-photo-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.client-admin-photo {
  overflow: hidden;
  background: #f4f2ec;
}

.client-admin-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.client-admin-photo form {
  display: block;
}

.client-admin-delete-photo {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.client-admin-delete-photo:hover {
  opacity: 0.78;
}

.client-admin-no-photos {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  color: var(--muted);
}

@media (max-width: 700px) {

  .client-admin-photo-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 420px) {

  .client-admin-photo-grid {
    grid-template-columns: 1fr;
  }

}

/* Final admin photo manager thumbnail lock */

.client-admin-photo-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: start;
}

.client-admin-photo {
  min-width: 0;
  overflow: hidden;
  background: #f4f2ec;
}

.client-admin-photo img {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.client-admin-photo form {
  display: block;
}

.client-admin-delete-photo {
  display: block;
  width: 100%;
}

@media (max-width: 1000px) {
  .client-admin-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .client-admin-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 420px) {
  .client-admin-photo-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final client admin delete button styling */

.client-admin-delete-photo {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.client-admin-delete-photo:hover {
  opacity: 0.82;
}



/* ==================================================
   CLIENT GALLERY DOWNLOAD LINKS
   ================================================== */

.client-gallery-item figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.client-gallery-download {
  color: #111;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.client-gallery-download:hover {
  opacity: 0.65;
}

@media (max-width: 600px) {

  .client-gallery-item figcaption {
    align-items: flex-start;
  }

}

/* ==================================================
   CLIENT DOWNLOAD MODE CONTROLS
   ================================================== */

.client-admin-download-mode {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding-top: 14px;
}

.client-admin-download-mode label {
  align-self: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.client-admin-download-mode select {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
  font: inherit;
}

.client-admin-download-save {
  border: 0;
  cursor: pointer;
}

.client-gallery-download-status {
  color: #777;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 700px) {

  .client-admin-download-mode {
    grid-template-columns: 1fr;
  }

  .client-admin-download-save {
    width: 100%;
  }

}

/* ==================================================
   CLIENT ADMIN DIGITAL PRICING
   ================================================== */

.client-admin-price-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns:
    minmax(150px, 1fr)
    minmax(150px, 1fr)
    auto;
  gap: 14px;
  align-items: end;
  padding-top: 14px;
}

.client-admin-price-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 700;
}

.client-admin-price-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.client-admin-price-input span {
  padding-left: 13px;
  font-weight: 700;
}

.client-admin-price-input input {
  width: 100%;
  min-width: 0;
  padding: 13px 13px 13px 5px;
  border: 0;
  background: transparent;
  color: #111;
  font: inherit;
}

.client-admin-price-input input:focus {
  outline: none;
}

.client-admin-price-save {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 700px) {

  .client-admin-price-form {
    grid-template-columns: 1fr;
  }

  .client-admin-price-save {
    width: 100%;
  }

}


/* ==================================================
   CLIENT GALLERY PURCHASE UI
   ================================================== */

.client-gallery-purchase-panel {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin: 30px 0 42px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.client-gallery-purchase-panel p {
  margin: 6px 0;
}

.client-gallery-buy-all {
  flex: 0 0 auto;
}

.client-gallery-buy-download {
  color: #111;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.client-gallery-buy-download:hover {
  opacity: 0.68;
}


/* ==================================================
   CLIENT PURCHASE PLACEHOLDER
   ================================================== */

.client-purchase-section {
  min-height: 72vh;
  padding: 120px 0;
  background: #f4f2ec;
}

.client-purchase-wrap {
  max-width: 850px;
}

.client-purchase-wrap h1 {
  margin: 0 0 40px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.client-purchase-card {
  padding: 40px;
  background: #fff;
}

.client-purchase-type {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-purchase-file {
  color: var(--muted);
}

.client-purchase-price {
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
}

@media (max-width: 700px) {

  .client-gallery-purchase-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .client-gallery-buy-all {
    width: 100%;
    text-align: center;
  }

  .client-purchase-section {
    padding: 85px 0;
  }

  .client-purchase-card {
    padding: 28px 22px;
  }

}

/* ==================================================
   CLIENT PURCHASE ACTIONS
   ================================================== */

.client-purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.client-purchase-actions button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 600px) {

  .client-purchase-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .client-purchase-actions .button {
    width: 100%;
  }

}

/* ==================================================
   CLIENT GALLERY — PREVENT CAPTION GRID STRETCH
   ================================================== */

.client-gallery-grid {
  align-items: start;
}

.client-gallery-item {
  align-self: start;
}

.client-gallery-item figcaption {
  height: auto;
  min-height: 0;
  align-self: start;
}

/* ==================================================
   CLIENT GALLERY — ISOLATE EACH CARD LAYOUT
   ================================================== */

.client-gallery-item {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  background: transparent;
}

.client-gallery-item figcaption {
  display: block;
  height: auto;
  min-height: 0;
  background: transparent;
}

/* ==================================================
   CLIENT GALLERY — FINAL CAPTION / BUY ACTION
   ================================================== */

.client-gallery-item figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 0;
  height: auto;
  min-height: 0;
  background: transparent;
}

.client-gallery-buy-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 9px 12px;
  background: #111;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.client-gallery-buy-download:hover {
  opacity: 0.82;
}

@media (max-width: 600px) {

  .client-gallery-item figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .client-gallery-buy-download {
    width: 100%;
  }

}

/* ==================================================
   CLIENT ADMIN — EDIT EXISTING GALLERY
   ================================================== */

.client-admin-edit-gallery-form {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.client-admin-edit-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.client-admin-edit-grid label {
  display: grid;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.client-admin-edit-grid input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  font: inherit;
}

@media (max-width: 700px) {

  .client-admin-edit-gallery-form .button {
    width: 100%;
  }

}

/* ==================================================
   CLIENT ADMIN — EXISTING GALLERY POLISH
   ================================================== */

.client-admin-edit-gallery-form {
  margin-top: 24px;
}

.client-admin-edit-grid {
  grid-template-columns: 1fr;
}

.client-admin-edit-grid input {
  box-sizing: border-box;
  width: 100%;
}

.client-admin-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.client-admin-gallery-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  text-decoration: none;
}

.client-admin-copy-link {
  border: 1px solid #111;
  background: transparent;
  color: #111;
  cursor: pointer;
}

.client-admin-copy-link:hover {
  background: #111;
  color: #fff;
}

.client-admin-download-mode,
.client-admin-price-form {
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

@media (max-width: 700px) {

  .client-admin-gallery-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .client-admin-gallery-actions .button {
    width: 100%;
  }

}

/* ==================================================
   CLIENT ADMIN — VIEW GALLERY BUTTON
   ================================================== */

.client-admin-gallery-actions .button-dark {
  background: #111;
  color: #fff;
}

.client-admin-gallery-actions .button-dark:hover {
  background: #343632;
  color: #fff;
}

/* ==================================================
   CLIENT ADMIN — ARCHIVE / RESTORE
   ================================================== */

.client-admin-archive-section {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin: 20px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.client-admin-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.client-admin-status-badge.is-active {
  background: #111;
  color: #fff;
}

.client-admin-status-badge.is-archived {
  background: #ddd9d0;
  color: #111;
}

.client-admin-archive-button {
  border: 1px solid #111;
  background: transparent;
  color: #111;
  cursor: pointer;
}

.client-admin-archive-button:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 700px) {

  .client-admin-archive-section {
    align-items: stretch;
    flex-direction: column;
  }

  .client-admin-archive-button {
    width: 100%;
  }

}

/* ==================================================
   CLIENT ADMIN — PERMANENT DELETE
   ================================================== */

.client-admin-delete-gallery {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  background: #f4f2ec;
}

.client-admin-delete-warning {
  margin: 0 0 16px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.client-admin-delete-gallery form {
  display: grid;
  gap: 14px;
}

.client-admin-delete-gallery label {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

.client-admin-delete-gallery input {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid rgba(17, 17, 17, 0.25);
  background: #fff;
  font: inherit;
}

.client-admin-delete-gallery-button {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.client-admin-delete-gallery-button:hover {
  opacity: 0.78;
}

/* ==================================================
   SITE HEADER — CANONICAL CONSISTENT VERSION
   ================================================== */

.site-header .header-inner {
  min-height: 110px;
}

.site-header .brand {
  flex: 0 0 auto;
  line-height: 1;
}

.site-header .brand-main {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.site-header .brand-sub {
  margin-top: 7px;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.34em;
}

@media (max-width: 1000px) {

  .site-header .main-nav {
    top: 110px;
  }

}

@media (max-width: 700px) {

  .site-header .header-inner {
    min-height: 90px;
  }

  .site-header .main-nav {
    top: 90px;
  }

}

/* ==================================================
   MOBILE HERO TITLE — PHOTOGRAPHY ALIGNMENT
   ================================================== */

@media (max-width: 700px) {

  .hero-title em {
    display: inline-block;
    margin-left: 20px;
  }

}




/* Mobile specialist heroes — location already established on homepage */
@media (max-width: 700px) {
  .equestrian-page .hero .section-kicker,
  .dogs-page .hero .section-kicker {
    display: none;
  }
}


/* =========================================================
   PRICING PAGE
   ========================================================= */

.pricing-page .site-header {
  position: relative;
  background: #0d100d;
}

.pricing-page .page-intro {
  padding-top: 90px;
  padding-bottom: 70px;
  text-align: center;
}

.pricing-page .page-intro p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-packages {
  padding: 20px 0 90px;
}

.pricing-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 48px 42px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: #fff;
}

.pricing-card .section-kicker {
  margin-bottom: 18px;
}

.pricing-card h2 {
  margin: 0 0 28px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.pricing-card p {
  margin: 0 0 15px;
  line-height: 1.65;
}

.pricing-card .pricing-deposit {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
  font-weight: 700;
}

.pricing-details {
  padding: 80px 0 90px;
  background: #f4f2ed;
}

.pricing-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 40px;
  max-width: 1180px;
  margin: 0 auto;
  transform: translateX(50px);
}

.pricing-detail h2 {
  margin-top: 10px;
  margin-bottom: 22px;
}

.pricing-detail p {
  margin: 0 0 12px;
  line-height: 1.65;
}

.pricing-turnaround {
  grid-column: span 3;
  max-width: 760px;
}

@media (max-width: 800px) {
  .pricing-page .page-intro {
    padding-top: 65px;
    padding-bottom: 50px;
  }

  .pricing-package-grid {
    grid-template-columns: 1fr;
  }

  .pricing-details-grid {
    grid-template-columns: 1fr;
    transform: none;
  }

  .pricing-turnaround {
    grid-column: auto;
  }

  .pricing-card {
    padding: 36px 28px;
  }
}


/* =========================================================
   LEGAL / BOOKING TERMS PAGES
   ========================================================= */

.legal-page .site-header {
  position: relative;
  background: #0d100d;
}

.legal-page .legal-intro {
  padding-top: 80px;
  padding-bottom: 100px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content > .section-kicker {
  margin-bottom: 18px;
}

.legal-content > h1 {
  margin-bottom: 42px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.legal-content p {
  max-width: 780px;
  margin-bottom: 18px;
  line-height: 1.75;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content strong {
  font-weight: 700;
}

@media (max-width: 800px) {
  .legal-page .legal-intro {
    padding-top: 55px;
    padding-bottom: 70px;
  }

  .legal-content h2 {
    margin-top: 38px;
  }
}

/* ==================================================
   PRINT SIZE PRICING — CENTRED
   ================================================== */

.print-size-grid > div {
  text-align: center;
}

/* ==================================================
   PRINT SIZE PRICING — COMPACT CENTRED BLOCK
   ================================================== */

.print-size-grid {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.print-size-grid > div {
  text-align: center;
}

/* ==================================================
   FOUR-COLUMN SITE FOOTER
   ================================================== */

.footer-grid-four {
  grid-template-columns: minmax(280px, 1.8fr) repeat(3, minmax(140px, 1fr));
  align-items: start;
  gap: 60px;
}

.footer-heading {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid-four .footer-nav,
.footer-grid-four .footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

@media (max-width: 900px) {
  .footer-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
}

@media (max-width: 600px) {
  .footer-grid-four {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* Footer location — restrained supporting text */
.footer-grid-four .footer-location {
  margin: 16px 0 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #999;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .footer-grid-four .footer-location {
    white-space: normal;
  }
}

/* ==================================================
   GROUP & YARD BOOKINGS — PRICING
   ================================================== */

.group-yard-bookings {
  margin-top: 54px;
}

.group-yard-intro {
  max-width: 820px;
  line-height: 1.75;
}

.group-yard-table-wrap {
  max-width: 860px;
  margin-top: 34px;
  overflow-x: auto;
}

.group-yard-table {
  width: 100%;
  border-collapse: collapse;
}

.group-yard-table th,
.group-yard-table td {
  padding: 17px 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  text-align: left;
}

.group-yard-table th {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.group-yard-table th:not(:first-child),
.group-yard-table td:not(:first-child) {
  text-align: right;
}

.group-yard-table th span {
  letter-spacing: normal;
  text-transform: none;
}

.group-yard-example {
  max-width: 860px;
  margin-top: 32px;
  padding: 25px 28px;
  background: #111;
  color: #fff;
}

.group-yard-example p {
  margin: 0;
  line-height: 1.7;
}

.group-yard-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin-top: 34px;
}

.group-yard-rules > div {
  padding: 25px;
  border: 1px solid rgba(17, 17, 17, 0.14);
}

.group-yard-rules h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.group-yard-rules p {
  margin: 0;
  line-height: 1.65;
}

.group-yard-contact {
  margin-top: 34px;
}

@media (max-width: 700px) {
  .group-yard-rules {
    grid-template-columns: 1fr;
  }

  .group-yard-table th,
  .group-yard-table td {
    padding: 14px 10px;
  }
}

/* ==================================================
   PRICING — FULL WIDTH LOWER SECTIONS
   Group & Yard + Turnaround
   ================================================== */

.pricing-detail.group-yard-bookings {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 54px;
}

.pricing-detail.group-yard-bookings .group-yard-intro {
  max-width: 820px;
}

.pricing-detail.group-yard-bookings .group-yard-table-wrap {
  width: 100%;
  max-width: 960px;
}

.pricing-detail.group-yard-bookings .group-yard-example {
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
}

.pricing-detail.group-yard-bookings .group-yard-rules {
  width: 100%;
  max-width: 960px;
}

.pricing-detail.group-yard-bookings .group-yard-contact {
  margin-top: 34px;
}

.pricing-detail.group-yard-bookings .group-yard-contact .button {
  display: inline-block;
  padding: 16px 24px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-detail.group-yard-bookings .group-yard-contact .button:hover {
  background: transparent;
  color: #111;
}

.pricing-detail.pricing-turnaround {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 54px;
}

.pricing-detail.pricing-turnaround p {
  max-width: 820px;
}

@media (max-width: 700px) {
  .pricing-detail.group-yard-bookings,
  .pricing-detail.pricing-turnaround {
    margin-top: 38px;
  }

  .pricing-detail.group-yard-bookings .group-yard-rules {
    grid-template-columns: 1fr;
  }

  .pricing-detail.group-yard-bookings .group-yard-contact .button {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}


/* Booking enquiry fields — 2026-08-26 */

.booking-enquiry-fields {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-enquiry-fields[hidden] {
  display: none;
}

.booking-enquiry-fields legend {
  padding: 0 0.45rem;
  font-weight: 600;
}

.booking-enquiry-fields .form-field {
  margin-top: 1rem;
}

.booking-enquiry-note {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.booking-enquiry-note-small {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  opacity: 0.85;
}

/* Compact booking enquiry layout */

.booking-enquiry-fields {
  margin: 1rem 0;
  padding: 1rem;
}

.booking-enquiry-fields .contact-form-row {
  gap: 0.65rem;
}

.booking-enquiry-fields .form-field {
  margin-top: 0.65rem;
}

.booking-enquiry-fields textarea {
  min-height: 72px;
}

.booking-enquiry-note {
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.booking-enquiry-note-small {
  margin-top: 0.7rem;
  line-height: 1.45;
}
