    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: #222;
      background: #fff;
      line-height: 1.6;
    }

    header {
      text-align: center;
      padding: 1.5rem 1rem;
      border-bottom: 1px solid #ddd;
    }
header h1 {
  margin: 0;
  line-height: 1.05;
}
header h1 + h1 {
  margin-top: 0.1rem;
}
header p {
  font-size: 0.8rem;
  opacity: 0.75;
margin-top: 0.45rem;
margin-bottom: 0.5rem;
}
    .style_1 {
color: rgb(121, 111, 72);
    }

    nav a {
      margin: 0.4rem;
      text-decoration: none;
      color: #000;
      font-size: 0.95rem;
    }

/* ===== PAGE CANVAS ===== */

.page-wrap {
  background: #fff;
}

/* Only apply framing on large screens */
@media (min-width: 1200px) {
  body {
    background: #f4f4f4;
  }

  .page-wrap {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow:
      0 0 0 1px rgba(0,0,0,0.04),
      0 8px 30px rgba(0,0,0,0.06);
  }
}


    /* ===== HERO PAN & ZOOM ===== */

.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 465px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.4s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08); /* slightly higher start */
  transition: transform 6.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  will-change: transform;
}

/* Motion targets (Hype-style scenes) */
.hero-slide[data-motion="tl"].active img {
  transform: scale(1.27) translate(-3%, -3%);
}
.hero-slide[data-motion="tr"].active img {
  transform: scale(1.27) translate(3%, -3%);
}
.hero-slide[data-motion="bl"].active img {
  transform: scale(1.27) translate(-3%, 3%);
}
.hero-slide[data-motion="br"].active img {
  transform: scale(1.27) translate(3%, 3%);
}

@media (max-width: 768px) {
  .hero { height: 55vh; }
}

/* ===== STATIC HERO (INNER PAGES) ===== */

/* Static hero: behaves like home hero, but capped */
.page .hero {
  height: 70vh;
  max-height: 465px;
  overflow: hidden;
}

/* Match home mobile behaviour */
@media (max-width: 768px) {
  .page .hero {
    height: 55vh;
    max-height: 465px; /* optional, harmless */
  }
}

.page .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* no zoom */
  transform: none;      /* overrides home animation */
  transition: none;
}

    /* ===== CONTENT ===== */

section {
  max-width: 900px;
  margin: auto;
  padding: 1.25rem 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

section p {
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

section p:last-child {
  margin-bottom: 0;
}

.intro .lead {
  font-size: 1.15rem;
  line-height: 1.75;
}
    footer {
      text-align: center;
      padding: 1.5rem;
      font-size: 0.85rem;
      color: #666;
      border-top: 1px solid #ddd;
    }

.feature-links {
  max-width: 900px;
  margin: auto;
  padding: 2.5rem 1.25rem;
padding-top: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.feature-grid p {
padding-right: 20px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-decoration: none;
  color: #000;
}

.feature-card {
  position: relative;
  padding-right: 2rem;
}

.feature-card::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #555;
}

.feature-card:active {
  background-color: rgba(0,0,0,0.04);
}

.feature-card img {
  width: 134px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}


.feature-card {
  padding: 1.75rem 0;
}

.feature-card + .feature-card {
  border-top: 1px solid #eee;
}

@media (max-width: 420px) {
  .feature-card img {
    width: 100px;
  }
}

/* ===== FEATURE GRID + IMAGE LAYOUT ===== */

.feature-layout {
  display: block;
}

.feature-image {
  margin-top: 2rem;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Side-by-side layout on larger screens */
@media (min-width: 900px) {
  .feature-layout {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 2.5rem;
    align-items: start;
  }

  .feature-image {
    margin-top: 0;
    padding-top: 0.5rem;
  }
}

@media (min-width: 900px) {
  .feature-image {
    padding-top: 1.75rem; /* matches .feature-card padding */
  }
}

/* ===== INTRO IMAGE LAYOUT ===== */

.intro-layout {
  display: block;
}

.intro-image {
  margin-top: 1.75rem;
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .intro-image {
    padding-top: 0.5rem;
  }
}

/* Two-column layout on larger screens */
@media (min-width: 900px) {
  .intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
  }

  .intro-image {
    margin-top: 0;
  }
}

/* Blown / Sculpted intro: inner image on the LEFT */
@media (min-width: 900px) {
  .page.blown .intro-text {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 2rem;
    align-items: start;
  }

  .page.blown .intro-inline-image {
    display: block;
  }

  .page.blown .intro-inline-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .page.blown .intro-copy {
    padding-top: 0.1rem; /* optical alignment */
  }
}

    /* -------- CONTACT -------- */
    .contact {
  font-size: 0.9rem;
  color: #555;
      margin-bottom: 0.5rem;
  text-align: center;
  text-decoration: none;
padding-top: .25rem;
    }

    footer {
      text-align: center;
      padding: 1.5rem;
      font-size: 0.85rem;
      color: #666;
      border-top: 1px solid #ddd;
    }



/* ===== STUDIO / WORK IMAGES ===== */

.image-gallery {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1.25rem 1.25rem;
}

.image-grid {
  column-count: 1;
  column-gap: 2rem;
}

@media (min-width: 768px) {
  .image-grid {
    column-count: 2;
    column-gap: 2.5rem;
  }
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
  break-inside: avoid;
}

.wide-feature {
  width: 100%;
  display: block;
  margin-bottom: 2.5rem;
}

.flickr-embed {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.25rem;
  text-align: center;
}

.flickr-embed img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.flickr-embed a:hover img {
  opacity: 0.9;
}

.work-item {
  break-inside: avoid;
  margin-bottom: 3.5rem;
}

.work-item img {
  width: 100%;
  height: auto;
  display: block;
}

.work-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}
