:root {
  --cream: #fbf4e8;
  --cream-light: #fffaf2;
  --cream-deep: #f2e3cf;
  --tan: #bd9362;
  --tan-dark: #9f7448;
  --brown: #2d2018;
  --muted: #6f5a48;
  --line: #dcc6a8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(189, 147, 98, 0.08), transparent 25%),
    radial-gradient(circle at 88% 78%, rgba(189, 147, 98, 0.08), transparent 22%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 6vw, 80px);
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(189, 147, 98, 0.22);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark path {
  fill: none;
  stroke: var(--tan);
  stroke-width: 2;
}

.brand strong {
  display: block;
  font-size: clamp(22px, 2.3vw, 31px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.brand small {
  display: block;
  margin-top: 6px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.outline-button {
  border: 1px solid var(--brown);
  padding: 13px 22px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--brown);
  background: transparent;
  padding: 10px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-section {
  min-height: 640px;
  display: grid;
  grid-template-columns: 45% 55%;
  background: linear-gradient(90deg, var(--cream-light) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.story-section::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 350px;
  opacity: 0.24;
  background-image:
    radial-gradient(ellipse at center, transparent 48%, var(--tan) 50%, transparent 52%);
  background-size: 82px 96px;
  transform: rotate(-15deg);
}

.hero-section::before {
  left: -60px;
  bottom: 0;
}

.hero-copy {
  padding: 110px clamp(22px, 8vw, 110px);
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tan-dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  margin-bottom: 28px;
}

h1 em {
  color: var(--tan);
  font-style: italic;
}

.decor-line {
  width: 260px;
  border-top: 1px solid var(--tan);
  margin: 0 0 34px;
}

.hero-text {
  max-width: 430px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.primary-button {
  display: inline-block;
  background: var(--tan);
  color: var(--white);
  padding: 15px 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  border: 1px solid var(--tan);
}

.primary-button.full {
  width: 100%;
  text-align: center;
}

.hero-image-card {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 42px;
  background:
    linear-gradient(rgba(70, 41, 18, 0.05), rgba(70, 41, 18, 0.14)),
    radial-gradient(circle at 50% 48%, #e6c9a5 0%, #bb8550 36%, #82512c 64%, #e8d8c5 100%);
}

.photo-placeholder {
  width: min(74%, 630px);
  aspect-ratio: 1.35 / 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 48% 48% 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 250, 242, 0.30);
  color: var(--cream-light);
  padding: 26px;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.photo-placeholder.smaller {
  width: 100%;
  height: 100%;
  min-height: 390px;
}

.loaves-section,
.story-section,
.order-section {
  padding: 68px clamp(20px, 6vw, 90px);
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.order-section h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 36px;
}

.loaf-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.loaf-card {
  text-align: center;
  background: rgba(255, 250, 242, 0.52);
  border: 1px solid rgba(220, 198, 168, 0.9);
  border-radius: 22px;
  padding: 28px 18px;
}

.loaf-icon {
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 38px;
  background: rgba(255, 255, 255, 0.42);
}

.loaf-card h3 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.loaf-card p,
.loaf-note,
.story-copy p,
.order-section p {
  color: var(--muted);
  line-height: 1.75;
}

.loaf-card p {
  font-size: 15px;
}

.loaf-note {
  text-align: center;
  margin-top: 30px;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: 44% 42%;
  gap: 8%;
  align-items: center;
  overflow: hidden;
}

.story-section::after {
  right: -70px;
  bottom: 30px;
  transform: rotate(14deg);
}

.story-photo {
  min-height: 420px;
  border-radius: 48% 48% 14px 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 250, 242, 0.20), rgba(255, 250, 242, 0.35)),
    radial-gradient(circle at 42% 42%, #efd8ba, #bd8955 46%, #774b29 100%);
  display: grid;
  place-items: center;
}

.story-copy {
  z-index: 1;
}

.story-copy p {
  font-size: 17px;
}

.signature {
  color: var(--tan-dark) !important;
  font-style: italic;
  font-size: 24px !important;
  margin-top: 24px;
}

.order-section {
  background: var(--cream-deep);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  border-block: 1px solid rgba(189, 147, 98, 0.24);
}

.order-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 16px 35px rgba(75, 48, 24, 0.07);
}

.order-card h3 {
  font-size: 28px;
  font-weight: 400;
}

.order-card p {
  font-size: 18px;
}

.order-card .small {
  font-size: 14px;
}

.care-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 42px clamp(20px, 6vw, 90px);
  background: var(--cream-light);
}

.care-item {
  padding: 10px;
}

.care-item span {
  display: block;
  color: var(--tan);
  font-size: 32px;
  margin-bottom: 12px;
}

.care-item strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.site-footer {
  text-align: center;
  padding: 34px 20px 42px;
  background: var(--cream-deep);
  color: var(--muted);
}

.site-footer strong {
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.footer-line {
  margin-bottom: 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 11px;
}

@media (max-width: 1050px) {
  .loaf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    gap: 16px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    padding: 22px;
    background: var(--cream-light);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(63, 43, 25, 0.10);
  }

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

  .outline-button {
    text-align: center;
  }

  .hero-section,
  .story-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
    padding: 70px 24px 46px;
  }

  .decor-line,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-card {
    min-height: 430px;
  }

  .story-photo {
    min-height: 340px;
  }

  .care-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 20px;
  }

  .brand small {
    letter-spacing: 2px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 46px;
  }

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

  .hero-image-card {
    padding: 24px;
  }

  .photo-placeholder {
    width: 100%;
  }
}


.giving-section {
  padding: 64px clamp(20px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  background: #fff8ef;
  border-top: 1px solid rgba(189, 147, 98, 0.18);
}

.giving-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 22px;
}

.giving-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.giving-note {
  color: var(--tan-dark) !important;
  font-style: italic;
  margin-top: 18px;
}

.giving-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px 34px;
  box-shadow: 0 14px 30px rgba(63, 43, 25, 0.06);
}

.giving-card h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.giving-card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 820px) {
  .giving-section {
    grid-template-columns: 1fr;
  }
}


.media-section {
  padding: 68px clamp(20px, 6vw, 90px);
  background: #fff8ef;
  border-top: 1px solid rgba(189, 147, 98, 0.18);
}

.section-intro {
  max-width: 560px;
  margin: -18px auto 34px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.video-grid {
  max-width: 1080px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.video-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px 16px 24px;
  box-shadow: 0 14px 30px rgba(63, 43, 25, 0.06);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 14;
  max-height: 520px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  background: var(--cream-deep);
}

.video-card h3 {
  margin: 18px 6px 8px;
  font-size: 24px;
  font-weight: 400;
}

.video-card p {
  margin: 0 6px;
  color: var(--muted);
  line-height: 1.7;
}

.photo-gallery {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 16px;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.photo-gallery img:first-child {
  grid-row: span 2;
}

@media (max-width: 820px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .photo-gallery img:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}


.story-copy .scripture {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 2px solid var(--tan);
  color: var(--tan-dark);
  font-style: italic;
  font-size: 19px;
}

.story-copy .scripture span {
  display: inline-block;
  margin-top: 8px;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--muted);
}

.story-section {
  align-items: start;
}


/* Final touchups: pricing, links, order details, mobile polish */
.price {
  margin: 14px auto 0 !important;
  color: var(--tan-dark) !important;
  font-size: 24px !important;
  font-weight: 700;
  letter-spacing: 1px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--tan-dark);
  border-bottom: 1px solid var(--tan-dark);
  padding-bottom: 3px;
  font-size: 16px;
}

.order-section strong {
  color: var(--brown);
}

.order-card .small {
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .loaf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 16px 18px;
  }

  .main-nav {
    top: 78px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-image-card {
    min-height: 360px;
  }

  .hero-copy {
    padding-top: 56px;
  }

  .loaves-section,
  .media-section,
  .story-section,
  .giving-section,
  .order-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .loaf-card {
    padding: 24px 18px;
  }

  .video-card video {
    max-height: 480px;
  }

  .story-copy .scripture {
    font-size: 17px;
  }

  .order-card {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: center;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .menu-toggle {
    padding: 9px 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }

  .primary-button {
    width: 100%;
    text-align: center;
  }

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

  .section-heading h2,
  .story-copy h2,
  .giving-copy h2,
  .order-section h2 {
    font-size: 34px;
  }

  .video-card video {
    aspect-ratio: 9 / 13;
    max-height: 430px;
  }

  .photo-gallery {
    grid-auto-rows: 230px;
  }

  .giving-card {
    padding: 26px 22px;
  }

  .order-card h3 {
    font-size: 24px;
  }

  .footer-line {
    letter-spacing: 2px;
    line-height: 1.6;
  }
}


/* Image fix: real hero/story photos instead of placeholders */
.hero-bread-image {
  width: min(74%, 650px);
  aspect-ratio: 1.35 / 1;
  display: block;
  object-fit: cover;
  border-radius: 48% 48% 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 45px rgba(75, 48, 24, 0.16);
}

.story-photo {
  overflow: hidden;
}

.story-bread-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  border-radius: 48% 48% 14px 14px;
}

@media (max-width: 820px) {
  .hero-bread-image {
    width: 100%;
    max-width: 410px;
    aspect-ratio: 1.18 / 1;
  }

  .story-bread-image {
    min-height: 340px;
  }
}


/* Autoplay video polish */
.video-card video {
  cursor: default;
}

.video-card::after {
  content: "Muted autoplay video";
  display: block;
  margin: 10px 6px 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
}


/* Hero background refinement */
.hero-image-card {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, #efe3d2 0%, #ead8c0 14%, #d7b18a 34%, #b67946 56%, #d1a17b 74%, #eee0d1 100%);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 23% 16%, rgba(255, 248, 240, 0.38) 0 10%, transparent 11%),
    radial-gradient(circle at 80% 22%, rgba(255, 248, 240, 0.18) 0 8%, transparent 9%),
    radial-gradient(circle at 18% 82%, rgba(255, 248, 240, 0.14) 0 10%, transparent 11%),
    radial-gradient(circle at 82% 82%, rgba(255, 248, 240, 0.20) 0 9%, transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(88, 53, 30, 0.16) 0 33%, transparent 58%);
  z-index: 0;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  width: min(82%, 720px);
  aspect-ratio: 1.36 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 52% 52% 18px 18px;
  background:
    linear-gradient(rgba(255, 250, 242, 0.18), rgba(255, 250, 242, 0.06));
  border: 1px solid rgba(255, 249, 241, 0.30);
  box-shadow:
    0 0 0 18px rgba(255, 248, 239, 0.08),
    0 28px 60px rgba(81, 50, 27, 0.16);
  z-index: 1;
}

.hero-bread-image {
  position: relative;
  z-index: 2;
  background: rgba(255, 250, 242, 0.20);
  box-shadow:
    0 18px 45px rgba(75, 48, 24, 0.16),
    0 0 0 10px rgba(255, 248, 241, 0.09);
}

@media (max-width: 820px) {
  .hero-image-card::after {
    width: 92%;
    box-shadow:
      0 0 0 10px rgba(255, 248, 239, 0.08),
      0 18px 40px rgba(81, 50, 27, 0.14);
  }
}
