/* styles.css */
:root{
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --line: rgba(0,0,0,0.08);
  --shadow: 0 12px 30px rgba(0,0,0,0.08);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.header{
  position: sticky;
  top: 0;
  background: rgba(251,250,247,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 5;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: var(--paper);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brandName{
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 18px;
}
.brandTag{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.navLinks{
  display: flex;
  align-items: center;
  gap: 14px;
}

.link{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.link:hover{ color: var(--ink); }

.hero{
  padding: 56px 0 18px;
}

.heroGrid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

h1{
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  font-size: clamp(32px, 4vw, 54px);
  margin: 0 0 10px;
}

.tagline{
  margin: 0 0 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.subhead{
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 0 18px;
}

.ctaRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: var(--paper);
  color: var(--ink);
}

.btnPrimary{
  border-color: rgba(0,0,0,0.16);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.btnGhost{
  background: transparent;
}

.btnFull{ width: 100%; }

.trust{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  font-size: 12px;
  color: var(--muted);
}

.heroCard{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.heroCardInner{ padding: 14px; }

.photoPlaceholder{
  border-radius: 14px;
  border: 1px dashed rgba(0,0,0,0.18);
  height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(0,0,0,0.02);
}

.phTitle{
  font-weight: 700;
  margin-bottom: 6px;
}

.phText{
  font-size: 13px;
  color: var(--muted);
}

.cardDetails{
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.cardLine{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.label{
  color: var(--muted);
  font-size: 13px;
}
.value{
  font-weight: 600;
  font-size: 13px;
}

.section{
  padding: 52px 0;
}

.soft{
  background: rgba(255,255,255,0.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sectionHead h2{
  font-family: Fraunces, Georgia, serif;
  font-size: 32px;
  margin: 0 0 6px;
}
.sectionHead p{
  margin: 0 0 22px;
  color: var(--muted);
}

.grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.item{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}


.thumb{
  height: 150px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.02);
  overflow: hidden;
  margin-bottom: 12px;
}

.thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.item h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.item p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.centerRow{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.twoCol{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.twoCol h2{
  font-family: Fraunces, Georgia, serif;
  font-size: 32px;
  margin: 0 0 10px;
}
.twoCol p{
  margin: 0 0 10px;
  color: var(--muted);
}

.miniCards{
  display: grid;
  gap: 10px;
}

.mini{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.miniTitle{
  font-weight: 700;
  margin-bottom: 4px;
}
.miniText{
  color: var(--muted);
  font-size: 14px;
}

.newsletter .newsletterBox{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.newsletter h2{
  font-family: Fraunces, Georgia, serif;
  margin: 0 0 6px;
  font-size: 30px;
}
.newsletter p{
  margin: 0;
  color: var(--muted);
}

.form{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.input{
  flex: 1 1 240px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font-size: 14px;
  background: rgba(0,0,0,0.02);
}

.finePrint{
  color: var(--muted);
  font-size: 12px;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footerGrid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.footerBrand{
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
}
.footerText{
  color: var(--muted);
  font-size: 13px;
}
.footerLinks{
  display: flex;
  gap: 14px;
  justify-content: center;
}
.footerRight{
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 900px){
  .heroGrid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .footerGrid{ grid-template-columns: 1fr; }
  .footerRight{ justify-content: flex-start; }
  .footerLinks{ justify-content: flex-start; flex-wrap: wrap; }
  .navLinks{ display: none; }
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.heroImage {
  border-radius: 14px;
  overflow: hidden;
}

.heroImage img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 90%;
  display: block;
}

.thumbBtn{
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  display: block;
    cursor: pointer;
}

.thumbBtn:focus{
  outline: 2px solid rgba(0,0,0,0.22);
  outline-offset: 3px;
}

.imgModal{
  border: none;
  padding: 0;
  border-radius: 16px;
  max-width: min(92vw, 980px);
  max-height: 88vh;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  background: transparent;
}

.imgModal::backdrop{
  background: rgba(0,0,0,0.55);
}

.imgModal img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.imgModalClose{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.heroBtn{
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
  cursor: pointer;
  display: block;
}