@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=EB+Garamond:wght@400;500&family=Dancing+Script:wght@400;500;600;700&display=swap');

:root{
  --ink:#F7F1E1;
  --surface:#FBF7EC;
  --surface-2:#F0E8D3;
  --border:#DDD0AC;
  --cream:#2B2318;
  --cream-dim:#5C5136;
  --gold:#8A6F3B;
  --gold-bright:#6E5628;
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
  background:var(--ink);
  color:var(--cream);
  font-family:'EB Garamond', serif;
  font-size:18px;
  line-height:1.7;
}

h1,h2,h3,.display{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  color:#241D14;
  letter-spacing:0.3px;
}

.script{
  font-family:'Dancing Script', cursive;
  font-weight:600;
  color:var(--gold-bright);
  letter-spacing:0.5px;
}

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

.wrap{max-width:1100px;margin:0 auto;padding:0 2rem;}

/* Header */
header{
  position:sticky;top:0;z-index:10;
  background:rgba(247,241,225,0.92);
  backdrop-filter:blur(6px);
  border-bottom:0.5px solid var(--border);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 2rem;max-width:1100px;margin:0 auto;
}
.nav img{height:34px;}
.brand{display:flex;align-items:center;gap:16px;}
.brand-icon{height:170px;width:auto;display:block;}
.brand-text{
  font-family:'Dancing Script',cursive;font-weight:600;
  font-size:56px;color:#241D14;line-height:1;margin-top:6px;
}
.nav ul{display:flex;gap:2rem;list-style:none;font-family:'Cormorant Garamond',serif;font-size:16px;letter-spacing:0.5px;}
.nav ul a{color:var(--cream-dim);transition:color .2s;}
.nav ul a:hover{color:var(--gold-bright);}

/* Hero */
.hero{
  text-align:center;
  padding:5rem 2rem 4rem;
  border-bottom:0.5px solid var(--border);
}
.hero img.logo{height:90px;margin-bottom:1.5rem;}
.hero .eyebrow{font-size:13px;letter-spacing:4px;color:var(--gold);margin-bottom:10px;}
.hero h1{font-size:44px;margin-bottom:14px;}
.hero p{color:var(--cream-dim);font-size:19px;max-width:520px;margin:0 auto;}

/* Pen-cap dome divider — signature motif echoing the logo */
.dome-divider{display:flex;justify-content:center;padding:2.5rem 0;}
.dome-divider svg{width:60px;height:34px;}

/* ---- Signature hero: asymmetric, ink-drawn ---- */
.hero-new{
  position:relative;
  overflow:hidden;
  border-bottom:0.5px solid var(--border);
  background:
    radial-gradient(ellipse 900px 500px at 78% 15%, rgba(184,154,94,0.10), transparent 60%),
    var(--ink);
}
.hero-watermark{
  position:absolute;right:-2vw;top:50%;transform:translateY(-50%);
  width:min(46vw,560px);opacity:0.055;
  pointer-events:none;user-select:none;
}
.hero-watermark svg{width:100%;height:auto;display:block;}
.hero-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.1fr 0.9fr;gap:2rem;align-items:center;
  max-width:1180px;margin:0 auto;padding:2.25rem 2rem 1.5rem;
}
.hero-grid .eyebrow{font-size:13px;letter-spacing:5px;color:var(--gold);margin-bottom:18px;}
.hero-grid h1{
  font-family:'Dancing Script', cursive;
  font-weight:600;
  color:#241D14;
  font-size:clamp(56px,8vw,92px);line-height:1.15;margin-bottom:0;
  max-width:600px;letter-spacing:0.5px;
}
.ink-underline{display:block;width:min(420px,90%);height:20px;margin:14px 0 22px;}
.ink-underline path{
  fill:none;stroke:var(--gold);stroke-width:2.5;stroke-linecap:round;
  stroke-dasharray:420;stroke-dashoffset:420;
  animation:draw-ink 1.6s cubic-bezier(.4,0,.2,1) 0.3s forwards;
}
@keyframes draw-ink{to{stroke-dashoffset:0;}}
.hero-grid p{color:var(--cream-dim);font-size:19px;max-width:460px;margin-bottom:2rem;}
.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--cream);color:var(--ink);font-weight:600;
  padding:13px 26px;border-radius:5px;font-family:'Cormorant Garamond',serif;
  font-size:17px;letter-spacing:0.3px;transition:background .2s, transform .2s;
}
.btn-primary:hover{background:var(--gold-bright);transform:translateY(-1px);}
.hero-visual{position:relative;height:420px;}
.hero-visual svg{width:100%;height:100%;}
.hero-visual-photo{
  height:auto;display:flex;flex-direction:column;align-items:center;
}
.hero-visual-photo img{
  width:100%;max-width:340px;border-radius:3px;
  box-shadow:0 24px 60px -20px rgba(43,35,24,0.35), 0 2px 10px rgba(43,35,24,0.12);
}
.hero-photo-caption{
  margin-top:16px;font-size:12px;letter-spacing:2px;color:var(--gold);
  text-transform:uppercase;
}
.hero-nib-line{
  fill:none;stroke:var(--gold);stroke-width:1;opacity:0.5;
  stroke-dasharray:900;stroke-dashoffset:900;
  animation:draw-ink 2.4s cubic-bezier(.4,0,.2,1) 0.5s forwards;
}
@media(max-width:820px){
  .hero-grid{grid-template-columns:1fr;text-align:center;padding:2.5rem 1.5rem;}
  .hero-grid h1{max-width:100%;}
  .ink-underline{margin-left:auto;margin-right:auto;}
  .hero-grid p{margin-left:auto;margin-right:auto;}
  .hero-visual{height:260px;order:-1;}
  .hero-visual-photo{height:auto;margin-bottom:1.5rem;}
  .hero-watermark{display:none;}
}

/* Ink-blot section divider — replaces plain dome shape */
.ink-divider{display:flex;justify-content:center;align-items:center;padding:1.4rem 0;gap:14px;}
.ink-divider .line{height:0.5px;width:80px;background:var(--border);}
.ink-divider svg{width:22px;height:22px;}

/* Section headings */
.section{padding:2.75rem 0;}
.section-head{text-align:center;margin-bottom:2rem;}
.section-head .eyebrow{font-size:12px;letter-spacing:3px;color:var(--gold);margin-bottom:8px;}
.section-head h2{font-size:30px;}

/* Product grid */
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;}
.card{
  background:var(--surface);
  border:0.5px solid var(--border);
  border-radius:6px;
  overflow:hidden;
  transition:border-color .2s, transform .2s;
}
.card:hover{border-color:var(--gold);transform:translateY(-2px);}
.card .thumb{
  aspect-ratio:4/5;background:var(--surface-2);
  display:flex;align-items:center;justify-content:center;
  color:var(--border);font-size:13px;letter-spacing:1px;
  border-bottom:0.5px solid var(--border);
}
.card .info{padding:1.2rem 1.3rem;}
.card .info h3{font-size:20px;margin-bottom:4px;position:relative;display:inline-block;}
.card .info h3::after{
  content:'';position:absolute;left:0;bottom:-3px;height:1.5px;width:0;
  background:var(--gold);transition:width .35s cubic-bezier(.4,0,.2,1);
}
.card:hover .info h3::after{width:100%;}
.card .info .price{color:var(--gold);font-size:16px;margin-top:8px;}

/* Buttons */
.btn-row{display:flex;gap:10px;flex-wrap:wrap;}
.btn{
  border:0.5px solid var(--gold);
  color:var(--cream);
  padding:9px 16px;border-radius:5px;
  font-family:'EB Garamond',serif;font-size:15px;
  display:inline-flex;align-items:center;gap:7px;
  transition:background .2s;
}
.btn:hover{background:rgba(184,154,94,0.12);}

/* Product detail page */
.product-hero{display:grid;grid-template-columns:1fr 1fr;gap:3rem;padding:2rem 0;align-items:center;}
.product-hero .thumb-main{
  aspect-ratio:4/5;background:var(--surface);border:0.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;color:var(--border);
  border-radius:6px;
}
.product-hero .eyebrow{font-size:12px;letter-spacing:3px;color:var(--gold);margin-bottom:10px;}
.product-hero h1{font-size:38px;margin-bottom:14px;}
.product-hero .price{font-size:22px;color:var(--gold-bright);margin:18px 0;font-family:'Cormorant Garamond',serif;}

.story{max-width:960px;margin:0 auto;padding:2rem 0;}
.story .block{display:flex;gap:1.5rem;padding:1.6rem 0;border-top:0.5px solid var(--border);}
.story .block:first-child{border-top:none;}
.story .block .mark{color:var(--gold);font-family:'Cormorant Garamond',serif;font-size:22px;flex-shrink:0;width:28px;}
.story .block p{color:var(--cream-dim);font-size:17px;}
.story .block strong{color:var(--cream);}

/* Alternating photo + text story rows */
.story-rows{max-width:1000px;margin:0 auto;padding:1rem 0;}
.story-row{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;
  padding:3rem 0;border-top:0.5px solid var(--border);
}
.story-row:first-child{border-top:none;}
.story-row.reverse .story-row-photo{order:2;}
.story-row.reverse .story-row-text{order:1;}
.story-row-photo{
  aspect-ratio:4/5;background:var(--surface);border:0.5px solid var(--border);
  border-radius:6px;overflow:hidden;display:flex;align-items:center;justify-content:center;
  color:var(--border);font-size:13px;box-shadow:0 18px 40px -18px rgba(43,35,24,0.25);
}
.story-row-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.story-row-text .mark{color:var(--gold);font-family:'Cormorant Garamond',serif;font-size:22px;display:block;margin-bottom:8px;}
.story-row-text h3{font-size:24px;margin-bottom:12px;}
.story-row-text p{color:var(--cream-dim);font-size:17px;line-height:1.75;}
@media(max-width:760px){
  .story-row{grid-template-columns:1fr;gap:1.5rem;padding:2rem 0;}
  .story-row.reverse .story-row-photo,
  .story-row.reverse .story-row-text{order:initial;}
}

.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:2.5rem 0;}
.gallery-centered{display:flex;flex-wrap:wrap;justify-content:center;}
.gallery-centered .g-item{flex:0 0 calc(20% - 10px);max-width:220px;margin:0 5px 10px;}
.gallery .g-item{
  aspect-ratio:1;background:var(--surface);border:0.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;color:var(--border);
  font-size:12px;border-radius:4px;
}
.gallery .g-item img{cursor:zoom-in;transition:opacity .2s;}
.gallery .g-item img:hover{opacity:0.82;}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;background:rgba(43,35,24,0.92);
  display:none;align-items:center;justify-content:center;
  z-index:200;padding:3rem 2rem;cursor:zoom-out;
}
.lightbox.active{display:flex;}
.lightbox img{
  max-width:90vw;max-height:88vh;border-radius:6px;
  box-shadow:0 30px 80px -20px rgba(0,0,0,0.6);
}
.lightbox-close{
  position:fixed;top:22px;right:28px;color:var(--ink);
  font-family:'Cormorant Garamond',serif;font-size:32px;line-height:1;
  cursor:pointer;opacity:0.8;transition:opacity .2s;
}
.lightbox-close:hover{opacity:1;}

.regular-gallery{
  display:grid;grid-template-columns:repeat(6,1fr);gap:12px;
  max-width:920px;margin:0 auto 2rem;
}
.regular-gallery a{
  display:block;aspect-ratio:1;border-radius:6px;overflow:hidden;
  border:0.5px solid var(--border);
  transition:transform .25s cubic-bezier(.4,0,.2,1), border-color .25s, box-shadow .25s;
}
.regular-gallery a:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
  box-shadow:0 14px 30px -14px rgba(43,35,24,0.35);
}
.regular-gallery img{width:100%;height:100%;object-fit:cover;display:block;}
@media(max-width:760px){
  .regular-gallery{grid-template-columns:repeat(3,1fr);gap:8px;}
}

footer{
  border-top:0.5px solid var(--border);
  padding:3rem 2rem;text-align:center;color:var(--cream-dim);font-size:15px;
}
footer .btn-row{justify-content:center;margin-top:1rem;}

@media(max-width:760px){
  .nav{flex-direction:column;align-items:center;gap:10px;padding:0.9rem 1rem;}
  .nav ul{gap:1rem;font-size:14px;flex-wrap:wrap;justify-content:center;}
  .nav img.brand-icon-full{height:42px !important;}
  .grid{grid-template-columns:repeat(2,1fr);}
  .product-hero{grid-template-columns:1fr;}
  .gallery{grid-template-columns:repeat(2,1fr);}
  .gallery-centered .g-item{flex:0 0 calc(50% - 10px);}
  .hero h1{font-size:32px;}
}

/* Custom Vanagas "V" cursor - transparent bg, hotspot at the tip */
body{
  cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAiCAYAAACA5IOiAAAFR0lEQVR4nIVVXWwU1xX+zr3zt16vE0hMiUkUZFKR1IlbZGho+ZnFsReXLFDSDqrURFVdFanioUKO1MLLaKRWfaoqXlAj2odKldp6pFIH4rhukzBJVdWKVgkBr63SoPyIQJdg2Nh4vLNz7+mDdy3HBvU+zRydT9855zvfvcCKw8wEAIcOHXq4v6/3F889V3wcAHzfFytzVwXy+bwEAFVfKBL4pzdv3PoOAJw/f35VrrEysG7dOgaA+fm4g6GnnYy9EQCiKNL/lzkMQzU09HwW4Gy1Wn0DLMjzCmsBaAB0T3Czr8tTM08SiduC5HXTFNdnKrVuAOR5nrgnuNnXQi3+KgS9KwRM03De1gJbAXClUrk3cxRFipmJge6WltxbUhrr12/YMGEIPDw0NJSNoii9K9hvfD9bKHyZiOZHRkZuCynbjh49+l+APiq/987uRulyFbjseQSAE1X/FnR6DgARkTp9+nSLNJ2RulIDAPhuzBSGoT46ONjBwKNf27XnDQBMEPVqtZobGxt73zRtZ//+/d1hGOrmYAUAuK4rAfDljz74vpDibBAEKRq6GIbBAIik8btafOcHALhcLlMTLKIoUoVC4ZFUpV88cWLXGc/zpO/7Ytk4eXR09J9aMw4c2Pd0GIbK930hXNcVAFjVaz8Rkn69Z0+QVioVCoJAg0lt27ZtttliNtf2q6RWPzY8PCyb7Ng30P/8N/b2BwDQ09NjAsDBg8Vn8rt2vF3ct++F5fFnBwqDe/ufOQ4ANDDQt7O2UPvxbrf3u+VyWYVhqIvF4gP1ZOHnDsTPYp3+yLDkyOjo3yZ6enrMUqlU3+PuOGk5zuuCWe8WhPeCIEiuXLkiALBl6SyIk5Hx8Y+JeBaKHwSAzs5OAkCO7bzJSj0t2ts7TkppdB47dixTKpVSz/PkmTOjH0LzpW8e3H9yYWGBZ6pzrzfkTAFwrZ72trQ6v230XHhxYKD/2wCwfIOGh4etlRvY3+9+pa/X/eWSztLEX+q1uruYFi4t0OHDh5NmzvlFVaBTFCUZrwIgAUCcPTv+H61TdWjv3ofCEKqxH03za2DRNEeOHDENQ3Zu2rz5XwC4qTMsJ3M5JrWlUfrdfM5Xr37QzYRPT506Ned5njTy+byOoghJsnDRMqytruuOVyoVw3XdJe9OTExI13VVWku3gPkSAKpUKmQEQcAAsHHjY1PXrn54sOHZz/m2+T9Q6PtC231rXgaAfD6vDWaGEAIzN673fvbZ7GF359enbdtWVsZhQ5hkGkQpg5I41jdufvrDepLEAC4CIAKAndu399kZu9ixvmNcWMbOOI5v27a9lhVXTdM0iChJksSJa/OlmZmbfY5lX3r1r3//jQEA0pZzlmXmblVvbXmwvf3+tfev2XDt2icfp2lqp2mqTNN00jTlufnZR2zLbnPslioakggAesf2bd/ToAOGwEuZ1pyQUiqtFdfrdYrjWDCzmp+b7ydideHi1AnXhdG89ClRyYXNjz3e8vs//Gkc9zibNj2qbMPsWCR1YfgAAoDbMvdlNHPO8zw5Oztr5HK5pYlPTk7Krq4uNX3pQls2l3PQuMsM+D4QBDAti4UgHf5xWLmuS2NjY2o5a7lcVt1dXTqTzS5dgktvlZkxoFiT7/uiXC6L5a/itXPnxEPFIr/y8p+ptbWVVoEzRgY6VXEQBBpAsqJdjVIJTz3xxB1LyjWrwJZtc1yLvzQ4+MLWJKlLInOp7DRNRTZrqampqafKk9P/BoAoipiYmYiIjx8/3j49NfkiQ/NiveJzxESSlVJi9s7tl1577R9XfN8X/wN2SlvvjnvJIgAAAABJRU5ErkJggg==") 7 2, auto;
}
a, button, .btn, .card, .g-item, .g-item img, .regular-gallery a, .story-row-photo img{
  cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAiCAYAAACA5IOiAAAFR0lEQVR4nIVVXWwU1xX+zr3zt16vE0hMiUkUZFKR1IlbZGho+ZnFsReXLFDSDqrURFVdFanioUKO1MLLaKRWfaoqXlAj2odKldp6pFIH4rhukzBJVdWKVgkBr63SoPyIQJdg2Nh4vLNz7+mDdy3HBvU+zRydT9855zvfvcCKw8wEAIcOHXq4v6/3F889V3wcAHzfFytzVwXy+bwEAFVfKBL4pzdv3PoOAJw/f35VrrEysG7dOgaA+fm4g6GnnYy9EQCiKNL/lzkMQzU09HwW4Gy1Wn0DLMjzCmsBaAB0T3Czr8tTM08SiduC5HXTFNdnKrVuAOR5nrgnuNnXQi3+KgS9KwRM03De1gJbAXClUrk3cxRFipmJge6WltxbUhrr12/YMGEIPDw0NJSNoii9K9hvfD9bKHyZiOZHRkZuCynbjh49+l+APiq/987uRulyFbjseQSAE1X/FnR6DgARkTp9+nSLNJ2RulIDAPhuzBSGoT46ONjBwKNf27XnDQBMEPVqtZobGxt73zRtZ//+/d1hGOrmYAUAuK4rAfDljz74vpDibBAEKRq6GIbBAIik8btafOcHALhcLlMTLKIoUoVC4ZFUpV88cWLXGc/zpO/7Ytk4eXR09J9aMw4c2Pd0GIbK930hXNcVAFjVaz8Rkn69Z0+QVioVCoJAg0lt27ZtttliNtf2q6RWPzY8PCyb7Ng30P/8N/b2BwDQ09NjAsDBg8Vn8rt2vF3ct++F5fFnBwqDe/ufOQ4ANDDQt7O2UPvxbrf3u+VyWYVhqIvF4gP1ZOHnDsTPYp3+yLDkyOjo3yZ6enrMUqlU3+PuOGk5zuuCWe8WhPeCIEiuXLkiALBl6SyIk5Hx8Y+JeBaKHwSAzs5OAkCO7bzJSj0t2ts7TkppdB47dixTKpVSz/PkmTOjH0LzpW8e3H9yYWGBZ6pzrzfkTAFwrZ72trQ6v230XHhxYKD/2wCwfIOGh4etlRvY3+9+pa/X/eWSztLEX+q1uruYFi4t0OHDh5NmzvlFVaBTFCUZrwIgAUCcPTv+H61TdWjv3ofCEKqxH03za2DRNEeOHDENQ3Zu2rz5XwC4qTMsJ3M5JrWlUfrdfM5Xr37QzYRPT506Ned5njTy+byOoghJsnDRMqytruuOVyoVw3XdJe9OTExI13VVWku3gPkSAKpUKmQEQcAAsHHjY1PXrn54sOHZz/m2+T9Q6PtC231rXgaAfD6vDWaGEAIzN673fvbZ7GF359enbdtWVsZhQ5hkGkQpg5I41jdufvrDepLEAC4CIAKAndu399kZu9ixvmNcWMbOOI5v27a9lhVXTdM0iChJksSJa/OlmZmbfY5lX3r1r3//jQEA0pZzlmXmblVvbXmwvf3+tfev2XDt2icfp2lqp2mqTNN00jTlufnZR2zLbnPslioakggAesf2bd/ToAOGwEuZ1pyQUiqtFdfrdYrjWDCzmp+b7ydideHi1AnXhdG89ClRyYXNjz3e8vs//Gkc9zibNj2qbMPsWCR1YfgAAoDbMvdlNHPO8zw5Oztr5HK5pYlPTk7Krq4uNX3pQls2l3PQuMsM+D4QBDAti4UgHf5xWLmuS2NjY2o5a7lcVt1dXTqTzS5dgktvlZkxoFiT7/uiXC6L5a/itXPnxEPFIr/y8p+ptbWVVoEzRgY6VXEQBBpAsqJdjVIJTz3xxB1LyjWrwJZtc1yLvzQ4+MLWJKlLInOp7DRNRTZrqampqafKk9P/BoAoipiYmYiIjx8/3j49NfkiQ/NiveJzxESSlVJi9s7tl1577R9XfN8X/wN2SlvvjnvJIgAAAABJRU5ErkJggg==") 7 2, pointer;
}
