:root{
  --ink:#261f1a;
  --muted:#6e625a;
  --line:rgba(80,61,45,.15);
  --cream:#f7efe2;
  --cream-2:#fbf7f0;
  --beige:#d6bea2;
  --brown:#2a1f17;
  --gold:#9b7b55;
  --white:#ffffff;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter","Noto Sans KR","Noto Sans SC",Arial,sans-serif;
  color:var(--ink);
  background:var(--cream-2);
}

img{
  max-width:100%;
  display:block;
}

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

.container{
  width:min(100% - 36px,1180px);
  margin:auto;
}

/* Header */

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(250,247,241,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(80,61,45,.09);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.brand-main{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:31px;
  font-weight:700;
  letter-spacing:-.04em;
}

.brand-sub{
  margin-top:2px;
  font-size:9px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:13px;
  font-weight:700;
}

.nav-links a{
  color:#2d251f;
}

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

.lang-switch{
  display:flex;
  align-items:center;
  gap:4px;
  border:1px solid rgba(80,61,45,.12);
  border-radius:999px;
  padding:4px;
  background:rgba(255,255,255,.62);
}

.lang-btn{
  border:0;
  border-radius:999px;
  background:transparent;
  color:var(--muted);
  font-weight:800;
  font-size:11px;
  padding:7px 9px;
  cursor:pointer;
}

.lang-btn.active{
  background:var(--brown);
  color:#fff;
}

/* Buttons */

.btn{
  border:1px solid transparent;
  border-radius:999px;
  padding:13px 22px;
  font-weight:800;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  transition:.2s ease;
}

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

.btn.dark{
  background:var(--brown);
  color:#fff;
}

.btn.ghost{
  background:rgba(255,255,255,.76);
  border-color:rgba(80,61,45,.14);
  color:var(--brown);
}

.btn.outline{
  border-color:rgba(80,61,45,.24);
  color:var(--brown);
  background:transparent;
}

/* Hero */

.hero{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#d9c3a9;
}

.hero-bg{
  position:absolute;
  inset:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(214,190,162,.88) 0%,
      rgba(214,190,162,.72) 35%,
      rgba(214,190,162,.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(38,31,26,.04),
      rgba(38,31,26,.13)
    );
}

.hero-content{
  position:relative;
  padding:112px 0;
}

.eyebrow{
  margin:0 0 18px;
  color:#806043;
  font-size:12px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.hero h1,
h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  letter-spacing:-.045em;
  font-weight:600;
}

.hero h1{
  max-width:570px;
  font-size:clamp(56px,7vw,94px);
  line-height:.92;
  margin:0 0 24px;
}

.hero-text{
  max-width:440px;
  color:#4d3f35;
  line-height:1.7;
  font-size:17px;
  margin:0;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}

/* Sections */

.section{
  padding:88px 0;
}

.section-head{
  margin-bottom:38px;
}

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

.section-head h2,
.story-copy h2,
.menu-event h2,
.contact-copy h2{
  font-size:clamp(42px,5.5vw,72px);
  line-height:.95;
  margin:0;
}

/* Services */

.service-strip{
  background:linear-gradient(180deg,#fffaf4,#f6eddf);
}

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

.service-photo-card{
  position:relative;
  min-height:310px;
  overflow:hidden;
  border-radius:8px;
  background:#d8c3aa;
  border:1px solid rgba(80,61,45,.14);
}

.service-photo-card img{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover;
  filter:saturate(.88) contrast(.96) brightness(.86);
  transform:scale(1.02);
}

.service-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(38,31,26,.08) 0%,
      rgba(38,31,26,.18) 38%,
      rgba(38,31,26,.58) 100%
    );
}

.service-card-text{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:2;
  color:#fff;
}

.service-card-text h3{
  margin:0 0 8px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:42px;
  line-height:.95;
  font-weight:600;
  letter-spacing:-.03em;
}

.service-card-text p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.55;
  font-weight:500;
}

/* Story */

.story{
  background:#fbf7f0;
}

.story-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:64px;
  align-items:center;
}

.story-copy p:not(.eyebrow){
  color:var(--muted);
  line-height:1.75;
  max-width:430px;
}

.text-link{
  display:inline-flex;
  margin-top:18px;
  font-weight:800;
  border-bottom:1px solid currentColor;
}

.story-photos{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  height:410px;
}

.story-photo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.story-photo.tall{
  height:100%;
}

/* Menu / Membership */

.menu-event{
  background:linear-gradient(180deg,#fbf7f0,#efe1cf);
}

.soft-panel{
  min-height:460px;
  border:1px solid rgba(80,61,45,.12);
  background:rgba(255,255,255,.42);
  padding:42px;
  display:grid;
  grid-template-columns:.75fr 1fr;
  gap:28px;
  align-items:center;
}

.soft-panel p:not(.eyebrow){
  color:var(--muted);
  line-height:1.7;
}

.soft-panel img{
  width:100%;
  max-height:370px;
  object-fit:cover;
  border-radius:4px;
}

.menu-panel-wide{
  grid-template-columns:.72fr 1.28fr;
}

.event-panel{
  grid-template-columns:.7fr 1.3fr;
}

.event-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.event-images img{
  height:300px;
  object-fit:cover;
}

.event-images.membership-only{
  grid-template-columns:1fr;
}

.event-images.membership-only img{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  background:#fffaf4;
}

/* Gallery */

.gallery-section{
  background:#fff;
}

.gallery-grid{
  columns:4 220px;
  column-gap:14px;
}

.gallery-grid img{
  width:100%;
  height:auto;
  display:block;
  break-inside:avoid;
  margin:0 0 14px;
  object-fit:contain;
  background:#efe1cf;
  border-radius:4px;
}

.gallery-grid img:first-child{
  grid-row:auto;
  grid-column:auto;
}

.gallery-grid img.gallery-portrait{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  background:#efe1cf;
}

/* Contact */

.contact-section{
  background:#f7efe2;
}

.contact-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:54px;
  align-items:center;
}

.contact-address{
  color:var(--muted);
  line-height:1.85;
}

.contact-links{
  display:grid;
  gap:12px;
  margin-top:28px;
  max-width:280px;
}

.contact-links a{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:#2f261f;
}

.contact-links a:before{
  content:"";
  width:8px;
  height:8px;
  border:1px solid #8b6b4d;
  border-radius:50%;
}

.map-card{
  background:rgba(255,255,255,.46);
  padding:14px;
  border:1px solid rgba(80,61,45,.12);
}

.map-card img{
  width:100%;
  border-radius:4px;
}

.map-btn{
  margin:16px 0 4px;
}

/* Footer */

.footer{
  background:#261f1a;
  color:#fff;
  padding:30px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  color:rgba(255,255,255,.72);
  font-size:13px;
}

/* Tablet */

@media(max-width:980px){
  .nav{
    align-items:flex-start;
    padding:14px 0;
    flex-wrap:wrap;
  }

  .nav-links{
    order:3;
    width:100%;
    justify-content:space-between;
    gap:14px;
    overflow:auto;
  }

  .nav-right{
    margin-left:auto;
  }

  .hero{
    min-height:590px;
  }

  .hero-shade{
    background:linear-gradient(
      90deg,
      rgba(214,190,162,.92),
      rgba(214,190,162,.62)
    );
  }

  .photo-service-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .service-photo-card{
    min-height:280px;
  }

  .story-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .story-photos{
    height:auto;
  }

  .story-photo{
    height:260px;
  }

  .soft-panel,
  .menu-panel-wide,
  .event-panel{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    columns:2 220px;
    column-gap:14px;
  }
}

/* Mobile */

@media(max-width:620px){
  .container{
    width:min(100% - 28px,1180px);
  }

  .brand-main{
    font-size:26px;
  }

  .nav{
    gap:14px;
  }

  .nav-right{
    width:100%;
    justify-content:space-between;
    gap:10px;
  }

  .nav-links{
    font-size:18px;
    gap:22px;
  }

  .btn{
    padding:12px 20px;
    font-size:14px;
  }

  .hero{
    min-height:560px;
  }

  .hero h1{
    font-size:52px;
  }

  .section{
    padding:66px 0;
  }

  .photo-service-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .service-photo-card{
    min-height:230px;
  }

  .service-card-text h3{
    font-size:38px;
  }

  .story-photos{
    grid-template-columns:1fr;
    gap:18px;
  }

  .story-photo{
    height:230px;
  }

  .gallery-grid{
    columns:1;
    column-gap:0;
  }

  .gallery-grid img{
    margin-bottom:18px;
  }

  .gallery-grid img.gallery-portrait{
    height:auto;
    max-height:none;
  }

  .soft-panel{
    padding:26px;
  }

  .footer-inner{
    flex-direction:column;
  }
}
