@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
:root{
  --ivory:#fbfaf6;
  --ivory-2:#f6f2e9;
  --charcoal:#242424;
  --charcoal-2:#171717;
  --gold:#b9892e;
  --gold-soft:#d2b268;
  --gold-line:rgba(185,137,46,.55);
  --ink:#202020;
  --muted:#6d685f;
  --shadow:0 18px 45px rgba(20,20,20,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    linear-gradient(115deg, rgba(185,137,46,.065) 0 1px, transparent 1px 14%),
    linear-gradient(65deg, transparent 0 44%, rgba(185,137,46,.045) 44% 44.2%, transparent 44.2% 100%),
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.95), rgba(255,255,255,0) 36%),
    linear-gradient(180deg,var(--ivory),#fff);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container{width:min(1180px,92vw);margin:auto}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(251,250,246,.94);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--gold-line);
}
.header-inner{
  height:78px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:28px;
}
.brand{display:flex;align-items:center;gap:14px;min-width:max-content}
.brand-mark{width:52px;height:52px;display:grid;place-items:center}
.brand-mark img{width:52px;height:52px;object-fit:contain;}
.brand-text{line-height:1}
.brand-name{
  font-family: Georgia, 'Times New Roman', serif;
  font-size:21px;letter-spacing:.11em;text-transform:uppercase;
}
.brand-studio{
  margin-top:6px;font-size:9px;letter-spacing:.48em;text-transform:uppercase;color:var(--gold);
  padding-left:2px;
}
.nav{display:flex;justify-content:center;gap:34px;font-size:12px;letter-spacing:.18em;text-transform:uppercase}
.nav a{position:relative;padding:28px 0 24px}
.nav a:after{
  content:"";position:absolute;left:50%;right:50%;bottom:18px;height:1px;background:var(--gold);
  transition:.2s ease;
}
.nav a:hover:after,.nav a.active:after{left:0;right:0}
.search-btn{
  border:0;border-left:1px solid var(--gold-line);background:transparent;padding:12px 4px 12px 24px;
  font-size:22px;cursor:pointer
}

.hero{
  border-bottom:1px solid var(--gold-line);
  background: #f1ece3;
}
.hero-grid{
  min-height:430px;
  display:grid;grid-template-columns:1.05fr .95fr;
}
.hero-copy{
  position:relative;
  padding:74px 54px 64px 0;
  display:flex;flex-direction:column;justify-content:center;
}
.hero-copy:before{
  content:"";position:absolute;left:-8vw;top:0;bottom:0;width:58vw;pointer-events:none;
  background:
   linear-gradient(112deg, transparent 0 28%, rgba(185,137,46,.12) 28.2% 28.35%, transparent 28.55% 100%),
   linear-gradient(70deg, transparent 0 66%, rgba(185,137,46,.07) 66.1% 66.25%, transparent 66.45% 100%);
}
.eyebrow{
  font-size:14px;letter-spacing:.22em;text-transform:uppercase;color:#936913;font-weight:700;
}
.eyebrow-line{display:flex;align-items:center;gap:14px;margin-bottom:10px}
.eyebrow-line:before{content:"";width:74px;height:1px;background:var(--gold)}
.sparkle{color:var(--gold);font-size:14px}
.hero h1{
  position:relative;margin:0;
  max-width:620px;
  font-family:Georgia,'Times New Roman',serif;
  font-size:35px;line-height:.98;font-weight:400;letter-spacing:-.03em;
}
.gold-mini-line{width:46px;height:1px;background:var(--gold);margin:22px 0}
.hero p{position:relative;max-width:560px;font-size:16px;line-height:1.75;color:#48443e}
.cta{
  position:relative;display:inline-flex;align-items:center;gap:18px;width:max-content;
  border:1px solid var(--gold);padding:14px 20px;margin-top:8px;
  font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  transition:.2s ease;background:rgba(255,255,255,.45)
}
.cta:hover{background:var(--charcoal);color:#fff;border-color:var(--charcoal)}
.hero-visual{
  position:relative;
  overflow:hidden;
  min-height:430px;
  
  background:
    linear-gradient(rgba(255,255,255,.08),rgba(255,255,255,.08)),
    url('images/hero-luxury-catholic.jpg') center/cover no-repeat,
    linear-gradient(135deg,#f6f1e8,#e7dfd2);
}
.hero-placeholder{
  position:absolute;inset:0;display:grid;place-items:center;text-align:center;padding:40px;
  color:#5d574f;
}
.hero-placeholder strong{
  font-family:Georgia,'Times New Roman',serif;font-size:36px;font-weight:400;
}
.hero-visual.has-image .hero-placeholder{display:none}

.featured{padding:34px 0 18px}
.section-title{text-align:center;margin-bottom:24px}
.section-title .eyebrow{display:flex;justify-content:center;align-items:center;gap:18px}
.section-title .eyebrow:before,.section-title .eyebrow:after{content:"";width:56px;height:1px;background:var(--gold)}
.section-title p{color:var(--muted);margin:10px 0 0}
.products{
  display:grid;grid-template-columns:repeat(4,1fr);gap:22px;
}
.card{
  border:1px solid rgba(185,137,46,.28);
  background:linear-gradient(180deg,rgba(255,255,255,.88),rgba(250,248,242,.94));
  box-shadow:0 8px 24px rgba(20,20,20,.03);
  min-height:250px;
  padding:28px 24px 24px;
  text-align:center;
  transition:transform .18s ease, box-shadow .18s ease;
  overflow:hidden;
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.card-emblem{
  width:52px;height:52px;border:1px solid var(--gold);border-radius:50%;margin:0 auto 18px;display:grid;place-items:center;color:var(--gold)
}
.card h3{font-family:Georgia,'Times New Roman',serif;font-size:20px;font-weight:400;margin:0 0 6px}
.card p{font-size:13px;line-height:1.5;color:#5f5a53;margin:0 0 20px}
.card a{font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:#9b6c12;font-weight:700}

.page-hero{padding:72px 0 54px;border-bottom:1px solid var(--gold-line)}
.page-hero h1{font-family:Georgia,'Times New Roman',serif;font-size:35px;font-weight:400;margin:8px 0 12px}
.page-hero p{max-width:720px;color:#5d574f;line-height:1.7}

.content-section{padding:54px 0}
.content-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:60px}
.collection-info {
    padding: 0;
    transform: translateY(-10px);
}

.collection-info .eyebrow {
    margin-bottom: 14px;
}

.collection-info h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    margin: 0;
}

.collection-gold-rule {
    width: 46px;
    height: 1px;
    background: var(--gold);
    margin: 20px 0 24px;
}

.collection-info p {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5d574f;
    margin: 0 0 18px;
}

.collection-info .cta {
    margin-top: 10px;
}
.placeholder-box{
  border:1px solid rgba(185,137,46,.38);background:rgba(255,255,255,.72);
  min-height:220px;padding:34px
}

.listing{display:grid;gap:14px}
.list-row{display:flex;justify-content:space-between;gap:20px;padding:18px 0;border-top:1px solid rgba(185,137,46,.32)}
.list-row:last-child{border-bottom:1px solid rgba(185,137,46,.32)}
.list-row h3{margin:0 0 5px;font-family:Georgia,'Times New Roman',serif;font-weight:400}
.list-row p{margin:0;color:#6a655d}

.footer{
  background:linear-gradient(90deg,var(--charcoal-2),#2b2b2b);
  color:#fff;margin-top: auto;border-top:1px solid var(--gold-line);
}
.footer-inner{
  padding:38px 0 26px;display:grid;grid-template-columns:1.4fr 1fr 1.2fr 1fr;gap:46px;
}
.footer .brand-name{font-size:21px}
.footer p,.footer a{color:#d9d5cd;font-size:13px;line-height:1.6}
.footer h4{margin:0 0 12px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:#fff}
.footer-bottom{border-top:1px solid rgba(185,137,46,.38);padding:15px 0 16px;text-align:center;color:#bdb8ae;font-size:12px}

.search-panel{
  display:none;position:fixed;inset:78px 0 auto 0;background:rgba(251,250,246,.98);border-bottom:1px solid var(--gold-line);z-index:40;padding:20px 0;
}
.search-panel.open{display:block}
.search-panel input{
  width:100%;padding:16px 18px;border:1px solid rgba(185,137,46,.45);background:#fff;font-size:16px
}

@media(max-width:900px){
 .header-inner{grid-template-columns:auto auto;height:auto;padding:16px 0}
 .nav{display:none}
 .search-btn{justify-self:end}
 .hero-grid{grid-template-columns:1fr}
 .hero-copy{padding:56px 0}
 .hero h1{font-size:44px}
 .hero-visual{min-height:320px}
 .products{grid-template-columns:repeat(2,1fr)}
 .footer-inner{grid-template-columns:1fr 1fr}
 .content-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
 .brand-name{font-size:17px}
 .brand-studio{letter-spacing:.32em}
 .hero h1,.page-hero h1{font-size:38px}
 .products{grid-template-columns:1fr}
 .footer-inner{grid-template-columns:1fr}
}

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

.about-story {
    padding: 54px 0 70px;
}

.about-story-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-story-content h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 22px;
}

.story-text {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5d574f;
    margin: 0 0 18px;
}

.about-section {
    margin-top: 42px;
}

.about-section h2 {
    margin-bottom: 18px;
}

.about-prayer {
    margin-top: 52px;
    padding-top: 10px;
}

.about-prayer .gold-mini-line {
    margin: 0 0 22px;
}

.about-prayer p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 19px;
    line-height: 1.65;
    font-style: italic;
    color: #48443e;
    max-width: 720px;
    margin: 0;
}
/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */

.product-page {
  padding: 70px 0 90px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 75px;
  align-items: start;
}


/* PRODUCT IMAGE */

.product-detail-image {
    min-height: 560px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.7);

    border: 1px solid rgba(183, 123, 29, 0.35);

    padding: 0;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;

    object-fit: cover;
    display: block;
}


/* PRODUCT INFORMATION */

.product-detail-info {
  padding-top: 25px;
}

.product-collection {
  color: var(--gold);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  margin-bottom: 16px;
}

.product-detail-info h1 {
  font-family: "Baskerville", "Palatino Linotype", Georgia, serif;

  font-size: 48px;
  line-height: 1.05;

  font-weight: 400;

  margin: 0;
}

.product-gold-rule {
  width: 50px;
  height: 1px;

  background: var(--gold);

  margin: 24px 0;
}

.product-intro {
  font-size: 17px;

  line-height: 1.7;

  color: #484540;

  margin-bottom: 40px;
}


/* DESCRIPTION */

.product-description {
  margin-bottom: 38px;
}

.product-description h2,
.product-specs h2 {
  font-family: "Baskerville", "Palatino Linotype", Georgia, serif;

  font-size: 21px;

  font-weight: 400;

  margin-bottom: 12px;
}

.product-description p {
  color: #59554f;

  line-height: 1.75;

  font-size: 14px;
}


/* PRODUCT SPECIFICATIONS */

.product-specs {
  border-top: 1px solid rgba(183, 123, 29, 0.35);

  margin-bottom: 35px;

  padding-top: 25px;
}

.spec-row {
  display: flex;

  justify-content: space-between;

  gap: 30px;

  padding: 13px 0;

  border-bottom: 1px solid rgba(183, 123, 29, 0.23);

  font-size: 13px;
}

.spec-row span:first-child {
  color: #77716a;
}


/* WHERE TO BUY BUTTON */

.product-buy-button {
  display: inline-flex;

  align-items: center;

  border: 1px solid var(--gold);

  padding: 15px 24px;

  color: #956414;

  font-size: 11px;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  transition: 0.2s ease;
}

.product-buy-button:hover {
  background: var(--charcoal);

  border-color: var(--charcoal);

  color: white;
}


/* MOBILE */

@media (max-width: 800px) {

  .product-detail-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .product-detail-image {
    min-height: 400px;
  }

  .product-detail-info h1 {
    font-size: 38px;
  }

}
.product-image {
    width: calc(100% + 48px);
    aspect-ratio: 1 / 1;
    overflow: hidden;

    margin-left: -24px;
    margin-right: -24px;
    margin-top: -28px;
    margin-bottom: 18px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card h3 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: none;
    color: inherit;
}
.search-results {
    margin-top: 10px;
    background: #fff;
    border: 1px solid rgba(185,137,46,.35);
    max-height: 360px;
    overflow-y: auto;
}

.search-result-item {
    display: block;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(185,137,46,.18);
    text-decoration: none;
    transition: background .15s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8f4ea;
}

.search-result-item strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 4px;
}

.search-result-item span {
    font-size: 12px;
    color: #6d685f;
}

.search-no-results {
    padding: 16px 18px;
    color: #6d685f;
    font-size: 13px;
}
/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-block .eyebrow {
    margin-bottom: 18px;
}

.contact-block p {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5d574f;
    margin: 0 0 16px;
}

.contact-email {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 22px !important;
    color: var(--ink) !important;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}
.hero-visual {
    overflow: hidden;
}

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