
:root{
  
  --bg1:#b8b6c9;
  --bg2:#9ea2bf;

  --ink:#3a3540;
  --muted:#6b6472;

  --glass: rgba(255,255,255,.55);
  --glass2: rgba(255,255,255,.36);

  --stroke: rgba(255,255,255,.45);
  --stroke2: rgba(255,255,255,.30);

  --shadow: 0 22px 55px rgba(26, 20, 36, .25);
  --shadow-soft: 0 10px 25px rgba(26, 20, 36, .18);

  --stackW: 720px;

  --padX: 18px;
  --padY: 16px;

  --radiusFrame: 44px;
  --radiusPanel: 34px;
  --radiusCard: 28px;
}


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


html{ overflow-y: scroll; }
body{
  min-height: 100vh;
  display:flex;
  justify-content:center;
  align-items:flex-start;

  padding-top: 60px;

  color: var(--ink);
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;

  background:
  
    url("images/back.PNG") center / cover no-repeat,
    radial-gradient(1200px 900px at 20% 15%, rgba(255,255,255,.55), transparent),
    radial-gradient(900px 650px at 85% 25%, rgba(255,255,255,.25), transparent),
    radial-gradient(1100px 800px at 50% 95%, rgba(255,255,255,.22), transparent),
    linear-gradient(135deg, var(--bg1), var(--bg2));

  overflow-x:hidden;
  position:relative;
}

body::before{
  content:"";
  position:fixed;
  inset:-40%;
  pointer-events:none;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  background-size:240px 240px;

  mix-blend-mode:soft-light;
  opacity:.22;
  transform:rotate(1deg);
}


.wrap{
  width: 100%;
  display:flex;
  justify-content:center;
  padding: 0 18px 48px;
}

.stack{
  width: min(var(--stackW), 100%);
  display:grid;
  gap: 22px;
}


.frame{
  width:100%;
  padding: 22px;
  border-radius: var(--radiusFrame);
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.28));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  position:relative;
}

.frame::after{
  content:"";
  position:absolute;
  inset:10px;
  border-radius: 38px;
  border:1px solid rgba(255,255,255,.35);
  pointer-events:none;
}


.panel{
  border-radius: var(--radiusPanel);
  overflow:hidden;
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  border:1px solid rgba(255,255,255,.48);
  box-shadow: 0 14px 40px rgba(26, 20, 36, .18);
}



.tabs{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  padding:16px 18px 14px;
  flex-wrap:wrap;
}

.tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:7px 12px;
  border-radius:999px;

  text-decoration:none;
  color: rgba(42,36,52,.86);

  
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);

  box-shadow: inset 0 1px 0 rgba(255,255,255,.40);

  transition:
    transform .20s ease,
    background .20s ease,
    border-color .20s ease,
    box-shadow .20s ease,
    color .20s ease;

  user-select:none;
  -webkit-tap-highlight-color: transparent;
}


.tab:hover{
  transform: translateY(-2px);
  background: rgba(222, 217, 236, 0.45);
  border-color: rgba(210, 202, 232, 0.70);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    0 10px 18px rgba(80,70,110,.10);
}


.tab.active,
.tab[aria-current="page"]{
  background: rgba(222, 217, 236, 0.60);
  border-color: rgba(210, 202, 232, 0.85);

  color: rgba(35,30,45,.92);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 12px 22px rgba(80,70,110,.12);
}


.tab:active{
  transform: translateY(-1px);
  background: rgba(215, 208, 232, 0.62);
}


.tab:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.55),
    0 0 0 6px rgba(110, 104, 124, .25),
    inset 0 1px 0 rgba(255,255,255,.70);
}


.content{
  padding: 0 var(--padX) var(--padY);
}


.copy{
  text-align:center;
  padding: 14px 10px 16px;
}

.copy h1{
  margin: 10px 0 8px;
  body {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
};
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  color: rgba(44,39,52,.92);
}

.copy p{
  margin:0;
  font-size: 15.5px;
  line-height:1.6;
  color: rgba(80,72,90,.85);
}


.hero{
  padding: 0 var(--padX) var(--padY);
}

.hero-card{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.22);
  box-shadow: 0 12px 26px rgba(26,20,36,.16);
  min-height: 190px;            
  display:grid;
  place-items:center;
}

.hero-card img{
  width:100%;
  height:200px;
  display:fill;
  object-fit:cover;
  object-position: center;
}

.hero-placeholder{
  opacity:.55;
  font-size: 13px;
  letter-spacing:.10em;
  text-transform:uppercase;
}


.links{
  width:100%;
  border-radius: 26px;
  padding: 16px 18px 14px;
  text-align:center;

  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.28));
  border:1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  position:relative;
}

.links::after{
  content:"";
  position:absolute;
  inset:9px;
  border-radius: 22px;
  border:1px solid var(--stroke2);
  pointer-events:none;
}

.links h2{
  margin:2px 0 12px;
  font-family:"Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight:500;
  font-size:18px;
  color: rgba(56,50,66,.75);
}



.btnrow{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding: 6px 8px 2px;
}




.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:11px 20px;
  min-width:170px;

  border-radius:16px;


  background: rgba(255,255,255,.40);
  border: 1px solid rgba(255,255,255,.55);

  color: rgba(42,36,52,.88);
  text-decoration:none;
  font-weight:500;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    0 10px 18px rgba(40,35,55,.08);

  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;

  user-select:none;
  -webkit-tap-highlight-color: transparent;
}



.btn:hover{
  transform: translateY(-3px);


  background: rgba(222, 217, 236, 0.55);
  border-color: rgba(210, 202, 232, 0.8);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 18px 30px rgba(80,70,110,.12);

  cursor:pointer;
}




.btn:active{
  transform: translateY(-1px);

  background: rgba(215, 208, 232, 0.60);

  box-shadow:
    inset 0 4px 8px rgba(60,50,90,.15),
    0 10px 18px rgba(60,50,90,.10);
}




.btn-icon{
  opacity:.85;
  transition: transform .22s ease, opacity .22s ease;
}

.btn:hover .btn-icon{
  transform: translateX(3px);
  opacity:1;
}


.scrollbox{
  max-height: 360px;        
  overflow-y: auto;
  padding-right: 10px;      
}


.photo-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 0;              
  margin: 0;
}

.photo-card{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius: 32px;

  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow:
    0 20px 55px rgba(0,0,0,.08),
    inset 0 0 0 10px rgba(255,255,255,.18);
}

.photo-card img{
  display:block;
  width:100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1);
  transition: transform .25s ease;
}

.photo-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding: 18px;

  background: rgba(0,0,0,0);
  opacity:0;
  transition: opacity .25s ease, background .25s ease;
}

.photo-title{
  color: rgba(255,255,255,.95);
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;

  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}

.photo-card:hover img{ transform: scale(1.03); }
.photo-card:hover .photo-overlay{
  opacity:1;
  background: rgba(0,0,0,.25);
}


.layout-card{
  position: relative;
  overflow: hidden;
  border-radius: 32px;

  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow:
    0 20px 55px rgba(0,0,0,.08),
    inset 0 0 0 10px rgba(255,255,255,.18);
}

.layout-card img{
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

/* soft light overlay */
.layout-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.22);
  opacity: 0;
  transition: opacity .28s ease;
  z-index: 1;
  pointer-events: none;
}

.layout-default-title{
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  color: white;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: opacity .25s ease;
}

/* center hover area */
.layout-hover{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity .28s ease;
}

/* the actual hover button/text */
.layout-hover a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  color: #ffffff;
  text-decoration: none;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 8px 20px rgba(80,70,110,.10);

  transform: translateY(8px);
  transition:
    transform .28s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    color .25s ease;
}

.layout-hover a:hover{
  text-decoration: none;
  color: #ffffff;
  background: rgba(255,255,255,.68);
  border-color: rgba(255,255,255,1);
}

.layout-card:hover img{
  transform: scale(1.03);
  filter: brightness(.88);
}

.layout-card:hover::after{
  opacity: 1;
}

.layout-card:hover .layout-hover{
  opacity: 1;
}

.layout-card:hover .layout-hover a{
  transform: translateY(0);
}

.layout-card:hover .layout-default-title{
  opacity: 0;
}


.piece{
  padding: 12px 4px;
}

.piece-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 8px;
}

.piece-title{
  margin:0;
  font-family:"century gothic", CenturyGothic, AppleGothic, sans-serif; 
  font-size: 18px;
  font-weight: 600;
}

.piece-meta{
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif; 
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .7;
}

.piece-text{
  margin:0;
  white-space: pre-wrap;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif; 
  font-size: 15px;
  line-height: 1.7;
  opacity: .95;
}

.piece-rule{
  border:0;
  height:1px;
  background: rgba(0,0,0,.10);
  margin: 16px 0;
}


.scrollbox{
  max-height: 360px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(140,130,165,.95) rgba(255,255,255,.22);
}

.scrollbox::-webkit-scrollbar{
  width: 12px;
}

.scrollbox::-webkit-scrollbar-track{
  background: rgba(255,255,255,.22);
  border-radius: 20px;
}

.scrollbox::-webkit-scrollbar-thumb{
  background: rgba(140,130,165,.95);
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,.30);
}

.scrollbox::-webkit-scrollbar-thumb:hover{
  background: rgba(120,110,150,1);
}


@media (max-width: 800px){
  .photo-grid{ grid-template-columns: 1fr; }
  .photo-card img{ height: 320px; }
  .layout-card img{ height: 320px; }
}

@media (max-width:520px){
  .frame{ padding:18px; }
  .tabs{ gap:14px; }
  .tab{ font-size:16px; }
  .btn{ min-width:150px; }
  .hero-card{ min-height: 170px; }
  .hero-card img{ height:170px; }
}

html {
  overflow-y: scroll;
}




.contact-box{
  margin: 24px auto 0 auto;
  max-width: 420px;
}


.contact-box form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-box input,
.contact-box select,
.contact-box textarea{
  width: 100%;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}

.contact-box button{
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  cursor: pointer;
}


.contact-form{
  width: min(520px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.field{
  display: grid;
  gap: 6px;
}

.field label{
  font-size: 13px;
  color: rgba(42,36,52,.70);
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  display: block;

  font-family: inherit;
  font-size: 15px;
  color: rgba(42,36,52,.90);

  padding: 12px 14px;
  border-radius: 14px;

  background: rgba(255,255,255,.40);
  border: 1px solid rgba(255,255,255,.55);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    0 10px 18px rgba(40,35,55,.08);

  outline: none;
}

.contact-form textarea{
  min-height: 160px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(42,36,52,.45);
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(210, 202, 232, 0.90);
  box-shadow:
    0 0 0 3px rgba(255,255,255,.55),
    0 0 0 6px rgba(110, 104, 124, .20),
    inset 0 1px 0 rgba(255,255,255,.75),
    0 14px 26px rgba(80,70,110,.10);
}


.contact-form .btn{
  width: fit-content;
  justify-self: end;
  min-width: 180px;
}

/* ============================= */
/* MINI COPYRIGHT CARD */
/* ============================= */

.mini-footer{
  margin: 18px auto 60px;
  padding: 10px 22px;

  width: fit-content;

  font-size: 12px;
  letter-spacing: .5px;
  text-transform: lowercase;

  color: rgba(42,36,52,.60);

  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 14px 28px rgba(40,35,55,.10);
}